Cerberus Helpdesk Forums  

Go Back   Cerberus Helpdesk Forums > Development Roadmap & Progress > Community Voting Booth

View Poll Results: If the 4.3 release only included one new major feature, what would you want it to be?
[Support Center] Shared ticket histories (e.g. org manager). 5 7.94%
[LDAP] Active Directory integration (GUI + Support Center). 17 26.98%
[Broadcast] The ability to mass reply to senders in buckets, searches, etc. 4 6.35%
[Workspaces] Sharing worklists between workers and groups. 10 15.87%
[Reminders] A system for reminders based on worklists (assigned tickets, overdue tasks). 5 7.94%
[Call Logging] A plugin to track + manage phone calls like tickets. 8 12.70%
[Notifications] Send worker notifications to IM/XMPP/iPhone. 3 4.76%
[Web-API] Implement add/edit/delete/search for all record types plus custom fields. 3 4.76%
Other... 8 12.70%
Voters: 63. You may not vote on this poll

Reply
 
Thread Tools Display Modes
  #21  
Old 09-05-2009, 12:21 AM
hubbadubba hubbadubba is offline
Member
 
Join Date: Apr 2007
Posts: 33
Default

All I can say about LDAP is this: It will help support center adoption rates and make it an easier sell to larger companies concerned with compliance (single directory management makes auditors happy).

Regarding the former, I am constantly amazed at how often the account creation process hurts adoption rates. I guess people feel too busy to go through a three step process to initilly use a new system. Anything that gets people using the support center (and getting those FAQs and kb articles in front of them) is a great feature, IMHO.
Reply With Quote
  #22  
Old 09-09-2009, 12:40 AM
frangelica frangelica is offline
Junior Member
 
Join Date: Jan 2007
Posts: 1
Default

The most important feature for me would be better handling of non-ticket-related (inbound and outgoing) email that needs to be handled but is not spam.

Not all communication is ticket-based or related to a particular support issue.

But it makes sense to store all of the communication history in a single system (Cerb4)

As an example, I deal with a lot of vendors who have me on their email list and every month, they send out emails detailing monthly specials and information (Cerb4 team does this. There is no support issue associated with these emails, but I like to keep them, so right now, I dump them into a folder (1 per company). But I also have communications with these companies that could be described as issue-related (negotiations would be an example where there is a lot of back and forth.

I would like for Cerb4 to more intuitively allow me to manage my entire email inbox from within the system.
Reply With Quote
  #23  
Old 09-09-2009, 01:37 AM
jstanden's Avatar
jstanden jstanden is offline
WGM - Cerb5 Architect
 
Join Date: Mar 2002
Location: Southern California, USA
Posts: 1,537
Default

Quote:
Originally Posted by fabiotpr View Post
CHD-1000 and CHD-518.
CHD-518 is done for 4.3, and CHD-1000 may make it into 4.3 (is planned).
Reply With Quote
  #24  
Old 09-09-2009, 01:38 AM
jstanden's Avatar
jstanden jstanden is offline
WGM - Cerb5 Architect
 
Join Date: Mar 2002
Location: Southern California, USA
Posts: 1,537
Default

Quote:
Originally Posted by dobesv View Post
Hire a usability consultant and make this thing usable for dummy users. It's still mostly a "techie" friendly user interface.
Our target audience is techies on purpose. There are plenty of simpler apps for simpler needs. We're positioned differently.
Reply With Quote
  #25  
Old 09-09-2009, 01:39 AM
jstanden's Avatar
jstanden jstanden is offline
WGM - Cerb5 Architect
 
Join Date: Mar 2002
Location: Southern California, USA
Posts: 1,537
Default

Quote:
Originally Posted by hubbadubba View Post
All I can say about LDAP is this: It will help support center adoption rates and make it an easier sell to larger companies concerned with compliance (single directory management makes auditors happy).
LDAP is my focus this week.
Reply With Quote
  #26  
Old 09-17-2009, 01:41 PM
tohaleyjr tohaleyjr is offline
Junior Member
 
Join Date: Apr 2007
Posts: 3
Default When will LDAP be released??

I have been waiting to upgrade our version of Cerberus until LDAP is released. I thought that was going to be in 4.3, but it looks like that has been delayed.

Any idea when this will be released?

Thanks,

Tom
Reply With Quote
  #27  
Old 09-18-2009, 12:39 AM
jstanden's Avatar
jstanden jstanden is offline
WGM - Cerb5 Architect
 
Join Date: Mar 2002
Location: Southern California, USA
Posts: 1,537
Default

We've sorted out what we need to do to allow login adapters (like LDAP) for both the helpdesk and Support Center. Since LDAP is a directory of custom properties, and not an application with a rigid structure, we'll probably provide an example implementation that can be customized based on organizations' needs.

For example, some orgs may want to allow their customers to log in using a customer ID rather than using an email address. Those IDs could be related to addresses using custom fields and matched from LDAP. We'd have a hard time providing that much flexibility in a prefabricated solution; but it would be easy to tweak a working LDAP example to do anything like that.

I'm still planning to add the extension point for login adapters to 4.3, and that LDAP example should follow shortly.
Reply With Quote
  #28  
Old 09-29-2009, 02:46 PM
netamia netamia is offline
Junior Member
 
Join Date: Oct 2006
Posts: 2
Default

Quote:
Originally Posted by rmiddle View Post
Most of what your are refering to is controlled by PHP. Make sure you have php localisation setup right.
The problem is that cerberus's code use the php-function strtotime (http://php.net/strtotime), which only accept US English formats.

When cerberus language is changed to eg. Danish, cerberus sets php's locale to "da_DK", which make php's date functions output in Danish that is non-parse-able by strtotime.

My current hack is:
--- libs/devblocks/Devblocks.class.php (revision 311)
+++ libs/devblocks/Devblocks.class.php (working copy)
@@ -773,6 +773,7 @@

static function setLocale($locale) {
@setlocale(LC_ALL, $locale);
+ @setlocale(LC_TIME, 'en_US');
self::$locale = $locale;
}

Best regards
Reply With Quote
  #29  
Old 12-04-2009, 10:04 PM
Crimm Crimm is offline
Junior Member
 
Join Date: Oct 2007
Posts: 27
Default

Quote:
Originally Posted by jstanden View Post
We've sorted out what we need to do to allow login adapters (like LDAP) for both the helpdesk and Support Center. Since LDAP is a directory of custom properties, and not an application with a rigid structure, we'll probably provide an example implementation that can be customized based on organizations' needs.

For example, some orgs may want to allow their customers to log in using a customer ID rather than using an email address. Those IDs could be related to addresses using custom fields and matched from LDAP. We'd have a hard time providing that much flexibility in a prefabricated solution; but it would be easy to tweak a working LDAP example to do anything like that.

I'm still planning to add the extension point for login adapters to 4.3, and that LDAP example should follow shortly.
I'm so excited for LDAP I can't wait - It looks like the ticket says it will come out in 4.3.1 http://www.wgmdev.com/jira/browse/CHD-183 - and things are looking promising: http://forum.cerb4.com/showthread.php?p=12972

Any release date announced yet for 4.3.1?
__________________
http://crimm.me
Reply With Quote
  #30  
Old 12-04-2009, 10:20 PM
rmiddle's Avatar
rmiddle rmiddle is offline
License Owner
 
Join Date: Jun 2004
Location: Maryland USA
Posts: 743
Default

Quote:
Originally Posted by Crimm View Post
I'm so excited for LDAP I can't wait - It looks like the ticket says it will come out in 4.3.1 http://www.wgmdev.com/jira/browse/CHD-183 - and things are looking promising: http://forum.cerb4.com/showthread.php?p=12972

Any release date announced yet for 4.3.1?
4.3.1 is should be out in the next few days. Still waiting for the plug-in info to be posted.

Thanks
Robert
__________________
http://cerb5blog.com
Featuring How-To, Patches, and News about Cerberus Helpdesk.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Which 4.0 major feature do you want WGM to focus on next? jstanden Community Voting Booth 84 10-06-2009 09:21 PM
Comments not included in merged tickets lrsatlanta Priority Support for VIPs 8 06-17-2009 12:09 AM
Commit ChangeLog (Build 594 to 603) - Major Performance Boost, Security, Cleanup jstanden Release Notes & What's New 0 05-21-2008 12:43 AM
Blog: Major Performance Improvements (Build 603) dsugita Announcements 0 05-20-2008 10:23 PM
Disapointed by this new release kolko General Help 3 11-20-2007 08:42 PM


All times are GMT. The time now is 10:59 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.