Search results

  1. V

    Is it Me?

    Hi FSPBX started as a fork of FusionPBX which is also stated clearly on their website. There are definitely remnants of FusionPBX but pages are being reworked fairly quickly at the moment. The most important pages, and certainly the customer facing ones, have been redesigned. The ones left, to...
  2. V

    adding members to ring group not working

    This is actually something many of our customers get wrong because the "add members" is hidden by the box. So they click Save instead. Despite us mentioning it in our little write-up for customer (who never read it anyway). I think there is room for improvement by not obscuring the "add members"...
  3. V

    FS PBX Messaging Module Now Available in Version 1.5.0

    we'd consider that at a later stage. Currently we're really busy moving people over which is a job and a half, but so far proving worth it.
  4. V

    call transcriptions and summaries

    I am less worried about the voicemail transcriptions at this point, but more about the transcriptions of the call recordings. I have a customer who is interested in this who receive over a thousand calls a day, and another who wants it as well who gets 20 a day. I am unsure if I can actually see...
  5. V

    call transcriptions and summaries

    I just activated this fantastic feature. Now I am trying to see how to control its usage. If we enable this for a customer we obviously need to charge them for this. What do most people use as a model here? A fixed rate per extension? A rate for actual transcriptions and if so how would one see...
  6. V

    FS PBX Messaging Module Now Available in Version 1.5.0

    Are there plans to include whatsapp in this? in our environment we have customers who do exactly what Yoni_NVG's customers do - but typically through whatsapp
  7. V

    Virtual Receptionist - screen does not update when adding keys

    I think this slipped in with 1.6. When adding a key in a virtual receptionist, it successfully does so but it does not show until you close it and open it again. So when you add 3 keys, the screen remains blank without showing any keys leaving one to wonder if it actually did it, and being...
  8. V

    New Feature: Voicemail Escalation

    I really like this idea!
  9. V

    Error in ring group creation with version 1.6.0

    Yeah same here - I have also reported it directly.
  10. V

    CDRs - status - some thoughts

    Understood - customer are able to see the detail of the call so that will have to do at this point in the cases where this is an issue.
  11. V

    CDRs - status - some thoughts

    In call history, which looks great and by honing in on it gives you exactly the information you want, the status seemingly reflects the last leg of the call. However, that creates some confusion at first glance. In an example, a call came in and was answered by ext 100. The person then...
  12. V

    FS PBX Messaging Module Now Available in Version 1.5.0

    Ok - clearly in the USA SMS is still a thing? I cannot remember when I last sent one or even received one. Whatsapp completely obliterated that technology here. A bit like faxing - which has been completely dead for well over 10 years. Interesting how different things are around the world! Keep...
  13. V

    FS PBX Messaging Module Now Available in Version 1.5.0

    Having a look at this - as I understand it this is for SMS to someone's mobile phone - is that correct? Deducted from the release notes: New Messaging app. You can now send and receive text messages (SMS) in the dashboard. Associate a user with an extension and an SMS number and head to...
  14. V

    Extension import - default has voicemail - can that be set somewhere?

    Ok cool - if I missed your post, apologies for duplicating. I would think that extending the import options is the easiest to deal with this. Currently it's a bit limited - see my post on call group as another option of the import. Then it would just be a matter of setting "voicemail = false" or...
  15. V

    Extension import - default has voicemail - can that be set somewhere?

    Hi When importing or creating extensions, the default is for them to have voicemail. Almost none of our customers want that (and I can relate, I don't want voicemail enabled on anything myself). So for us it would make a lot more sense to enable it where required, instead of disabling it where...
  16. V

    Extension page - some more detail

    Hi Our users make extensive use of call pick ups for which we generally add extensions to a call group. It would be useful to: 1. add this to the import template 2. have a column on the extension overview page showing the call groups so that you immediately know which extensions can pick up...
  17. V

    CDR detail in the DB

    The stuff you are deleting is not in the DB so by deleting those you already created space. Postgres does not give space back to the OS when you delete things - vacuum full will, AFTER you deleted records from the DB. To delete CDRs older than 90 days, you would do something like:: DELETE FROM...
  18. V

    CDR detail in the DB

    If by getting to "a login" you mean a gui page - there isn't one. For that you would need something like phpmyadmin. from the cli - something like: psql --host=127.0.0.1 --username=fusionpbx It will ask for the password - give that, and you're in. From there you will have to run the...
  19. V

    CDR detail in the DB

    Hi Log into postgres - the username will be fusionpbx. If you don't know the pass, it will be in /etc/fusionpbx/config.conf that will get you in. I am far from well versed in postgres stuff but remember that a vacuum full will lock the tables, so that you should do when you have no traffic. A...