Recent content by Voipy

  1. V

    New Feature: Voicemail Escalation

    I really like this idea!
  2. V

    Error in ring group creation with version 1.6.0

    Yeah same here - I have also reported it directly.
  3. 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.
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. V

    CDR detail in the DB

    Hi - thanks. Autovacuum should be running though so no need to to perform this manually I think?
  14. V

    CDR detail in the DB

    Hi On our Fusion set up we periodically run a script to remove most of the information from the CDRs. There is huge amount of info which is really useful when troubleshooting, but there is no need to keep this after a few days. We do need to keep the CDRs for 5 years so we want them as compact...