Search results

  1. whut

    Call recording

    Good points to consider. voicemail transcriptions are very short and are only a tiny consideration for STT. Long recordings would be a paramount consideration.
  2. whut

    Call recording

    I have seen a very small set of occurrences with the transcription service providers returning results too slowly where the transcriptions are not included in a voicemail to email notifications. Otherwise the module has worked very well with multiple STT service providers. I believe tou do bring...
  3. whut

    Call recording

    Fusionpbx does transcription https://github.com/fusionpbx/fusionpbx-app-transcribe
  4. whut

    Deleting a domain through postgres function

    @agree thanks again for the PL SQL I am finding it very useful. I have been testing it have have a couple of changes here - mostly executing the deletes in table order A-Z. Image below of the delete in A-Z table name order. CREATE OR REPLACE FUNCTION delete_domain(id UUID) RETURNS void AS $$...
  5. whut

    Deleting a domain through postgres function

    I removed the duplicate `AND table_schema = 'public'` in your WHERE clause in the below. CREATE OR REPLACE FUNCTION delete_domain(id UUID) RETURNS void AS $$ DECLARE r RECORD; BEGIN FOR r IN SELECT table_schema, table_name FROM information_schema.columns JOIN...
  6. whut

    Deleting a domain through postgres function

    nicely done. This could easily be adapted for other purposes too. :cool:
  7. whut

    Deleting a domain through postgres function

    That is nice PL SQL agree. But pressing the delete domain(s) button in the fusionpbx GUI will perform all of the deletes for you.O do not remember if it also deletes the recordings, messages, and others. It has been a long time since I have needed to remove a domain.
  8. whut

    Authentication Plugin

    FusionPBX has multi-factor authentication. You may want to investigate that. Check default settings for this. By default a valid user with X failed login attempts will be blocked for X minutes. Check default settings for this. I would not allow any unauthenticated visitors with access to the...
  9. whut

    Ongoing Issue With CDR

    Which version of FusionPBX are your webpages resting upon?
  10. whut

    Ongoing Issue With CDR

    I do not know of any proven correlation that would exclude you from updating FusionPBX and that would stop the CDRs from updating. Run every FusionPBX update option 1 at a time in successsion. Do not skip any upgrade options. If you watch the changes in github you will notice there have been...
  11. whut

    User Permission

    No. this has nothing to do with one of the few paid member feature. It is solely incorrectly setting user permissions and user extension associations.
  12. whut

    User Permission

    Fusionpbx already has this. It looks like you are assigning accounts to have super admin permissions group. Very not good. Assign the user group, assign the user to the appropriate extensions. Read any dcumentation you have access to.
  13. whut

    No outbound calls

    Have you set all extensions to have CID name and CID number? You do need these set for outbound calls
  14. whut

    alert_info

    <action application="set" data="valet_info_park=${valet_info park@${valet_context}}|\*${park_lot}" inline="true"/> <action application="set" data="park_in_use=${regex ${valet_info park@${valet_context}}|\*${park_lot}}" inline="true"/>
  15. whut

    Dashboard Widget Authoring

    :cool::cool: I had to do a lot of investigation when building my first dashboard widget. It is much easier to display every widget after the first one! :)
  16. whut

    Toll Allow

    Would it be better to update the session variable to toll_allow so the default settings will all be consistent with all default setting categories that are more than 1 word? eg: default_setting_category call_block call_center call_flow call_recordings conference_center fax_queue follow_me...
  17. whut

    Dashboard Widget Authoring

    You also need a config.php. Look at the existing dashboard widgets so you will know how to add the code to that page.
  18. whut

    Dashboard Widget Authoring

    I don't think there is any documentation on how to create a dashboard widget. Within your app/invoices directory create resources and dashboard directories. Add your PHP inside the dashboard directory. mkdir invoices/resources/ mkdir invoices/resources/dashboard/ Chown the directories and files
  19. whut

    fs_cli empty response on list_users

    The extension webpage has colored dots to display which extensions are registered, not registered, and multiple registrations.
  20. whut

    fs_cli empty response on list_users

    You can use fs_cli with fusionpbx. You have run into one of the items where it was determined that performing actions in fusionpbx instead of freeswitch or fs_cli was better, faster, more reliable. Freeswitch is a requirement for phone registrations, phone calls, and many other things. If you...