Search results

  1. Adrian Fretwell

    Changing the ring tone that a caller hears when calling someone on FusionPBX

    It is controlled by the Ring Back setting. "Defines what the caller will hear while the destination is being called."
  2. Adrian Fretwell

    show incomming call from ring group

    As Albert says, you can do it in the destination, useful to indicate what number (DDI) the call came in on and fine if it transfers to a ring group. This option does not work if you transfer to an IVR which provides options go to different ring groups (Sales, Accounts, etc.). There is a field...
  3. Adrian Fretwell

    Hello from Kansas

    Hi Abraham, and welcome! You should get some friendly help here. It is a shame that the membership cost is a barrier for many. Even as a business we struggle to justify the $1200/year especially in the context of all the other donations we make to support the many other Open Source software...
  4. Adrian Fretwell

    single domain migration from server A to B

    I'm sure you could, just in the same way you could export and import the whole database. What I am really interested in, is the ability to move a single domain from one live server to another live server without affecting any of the existing domains on either server.
  5. Adrian Fretwell

    single domain migration from server A to B

    I am not aware of a complete solution, we have just managed using manual file copy (rsync) and manual DB extracts using the Postgesql copy command. I don't mind putting some time in to code a solution, but as I said in my post on Jan 3 2020, it would be nice to hear what @markjcrane has to say...
  6. Adrian Fretwell

    Click to call

    We produced both Firefox and Chrome versions based on this code: https://github.com/gizmobin/FusionPBX-SelectToCall It works very well and appears to be very reliable. I can't share my actual source code because it contains some specific alterations requested and sponsored by a number of...
  7. Adrian Fretwell

    Sofia Profile Parameters

    You can compare what is in the FusionPBX database and enabled with something like: select sps.sip_profile_setting_name, sps.sip_profile_setting_value from v_sip_profiles sp, v_sip_profile_settings sps where sps.sip_profile_uuid = sp.sip_profile_uuid and sp.sip_profile_name = 'internal' and...
  8. Adrian Fretwell

    Outbound route issue

    Could the call be going via another outbound route? I can't see where 03 would be coming from.
  9. Adrian Fretwell

    Force only PCMA, PCMU in SDP to Gateway before bridge

    Setting absolute_codec_string should work, this will fix the codec to what you have specified, nothing else will be added to the list. Setting coded_string will establish your basic codec rules but allow other options to be added. For my specific requirements, I tend to do this globally in the...
  10. Adrian Fretwell

    Manually entering data into DB

    On the device profile record, the drop down for Domain does have a "Global" option. I have never tried using it. As far as copying device profiles to another server, below are a couple of "rough and ready" bash scripts that I use for this purpose, please use/adapt at your own risk. Both...
  11. Adrian Fretwell

    SOLVED edit db via bash

    Ref: https://freeswitch.org/confluence/display/FREESWITCH/Reloading Reloading XML: root@a2estest2:~# fs_cli -x "reloadxml" +OK [Success] root@a2estest2:~# fs_cli -x "xml_flush_cache" +OK cleared 0 entries Sofia profile rescan - Less intrusive - no calls dropped: root@a2estest2:~# fs_cli...
  12. Adrian Fretwell

    Session Border Controller Software

    Hi, yes that does make a lot of sense. We use mostly UDP, and TCP, where necessary, and generally speaking do not encounter NAT problems. We have had a good few issues where customers routers have had some sort of ALG operating but once switched off FreeSWITCH has handled the NAT perfectly...
  13. Adrian Fretwell

    Session Border Controller Software

    Ask 10 different people what an SBC is and you will get 10 different answers. I know you can look up Session Border Controller on Wikipedia: https://en.wikipedia.org/wiki/Session_border_controller But in my opinion, an SBC isn't actually a thing, it is a name invented by marketing people to...
  14. Adrian Fretwell

    SOLVED edit db via bash

    There are many different ways you could do this. Switching to the postgres user is convenient because you do not need credentials. You can use psql as any user of you supply credentials. Here is an example of a simple bash script to execute some SQL contained in a file, the name of which is...
  15. Adrian Fretwell

    SOLVED edit db via bash

    SIP profile data is held using three tables: v_sip_profile_domains, v_sip_profiles, and v_sip_profile_settings. Work out what records you need to change and issue an update statement using psql. root@a2estest2:~# su - postgres postgres@a2estest2:~$ psql fusionpbx psql (11.9 (Debian...
  16. Adrian Fretwell

    Phone number and sip trunk providers in the UK

    Darren, who runs this forum provides sip trunks, check out https://www.directvoip.co.uk/ We also provide UK SIP trunks with full 999 emergency services access, PM me if you are interested.
  17. Adrian Fretwell

    Speed up CDR Statistics

    @DigitalDaz Thank you. Very useful information.
  18. Adrian Fretwell

    Speed up CDR Statistics

    @DigitalDaz Do you know how much impact, if any, having these indexes increases new CDR record insertion times?
  19. Adrian Fretwell

    Hi All. Willie from South Africa.

    Hello and welcome!
  20. Adrian Fretwell

    Rebooting devices on a schedule, How?

    You can reboot a single phone from the command line with something like: root@af-test3:~# fs_cli -x 'luarun app.lua event_notify internal reboot 201@testdomain.uk snom'