Recent content by richardwvm

  1. 3CX not changing status (DST issue?)

    Yes same here, looks like 3CX hasn't noticed the time on the server has changed. I just made everyone "Available" and will restart the services out of hours later.
  2. License Limit is reached when automatic DND kicks in/out

    Product 3CX Phone System Professional Edition Version Number 15.5.5 Snom 821 Yes I noticed the behaviour changed with the advent of 3CX 15, as the phone now seems to know it's in DND out of hours (on the display), whereas it never used to. I have not configured anything to use dial codes, I've...
  3. License Limit is reached when automatic DND kicks in/out

    Hi, I get multiple warning e-mails for licence limit is reached when our extensions go in/out of DND at the start and end of each business day. Should 'Dial Code' calls be included in the simultaneous call count? I don't think they should. Regards, Richard.
  4. Out of Hours DND switching off user DND

    Correct. However in version 14 it remembered whether or not DND was already enabled and left it that way. This is a change in behaviour that is undesirable. We have part time users who leave their phone in DND until they are back in the office. Since the upgrade their phones fall out of DND...
  5. Out of Hours DND switching off user DND

    Yes it is and it always has been, even in version 14. The difference now, is that the user's preference isn't remembered the following day.
  6. Out of Hours DND switching off user DND

    Hi Folks, Finally got around to upgrading from v14 to v15 the other week and have noticed that if I place my phone in DND, the following morning it has been turned off on the PBX by auto out of hours and the phone obviously doesn't notice. This is a change in behaviour from v14 which...
  7. Fake ringing before outgoing call established

    Hi Folks, Was wondering whether there is a way to remove or change the faked ringing sound presented to the end user, while 3CX decides how to route/failover then connect an outgoing call? Sometimes for difficult to reach countries and/or mobiles, it can take a while before handing over the...
  8. 3CX CRM Integration_Custom

    See: http://www.3cx.com/forums/3cx-another-crm-a-demonstration-of-how-o-integrate-with-3cxphone-api-from-a-custom-crm-platform-44198.html
  9. 3CX Another CRM (A demonstration of how to integrate with 3CXPhone API from a custom CRM platform)

    3CXusername asked me if I would Open Source my integration method as an example to others, so I've made a demo application available on Github; hopefully someone will find it useful. It covers basic call handling, which is easily extensible to database lookups etc in your own application...
  10. ODBC Directory Search (V14SP2)

    Suggested bug fix in CompanyDirectoryService.OdbcReaderMapping: public string Get(string field) { int num; if (!this._mapping.TryGetValue(field, out num)) { return string.Empty; } object value =...
  11. ODBC Directory Search (V14SP2)

    Hi Nick, Problem solved. It would seem that 3CX can't cope with any fields returning DBNull, so just had to wrap everything like this: ISNULL(directory.FirstName, '') AS [FirstName] Now works as expected! Incidentally you only need to restart the Call History service to see the change in log...