15

3

It would be quite nice to be able to configure the default category for new cases on a per-project basis.

This should also apply to incoming emails so that if I have a mailbox configured to always place incoming messages to a specific project I could specify the default category for those to be something other than "Inquiry". This would allow to ensure that cases going to that project follow a specific workflow. I don't see another way to configure this at the moment.

For example I created a project called "IT orders" and using the workflow-plugin created a category and corresponding workflow. However any case submitted by email to this project by default is of type Inquiry and thus will not go through the desired workflow unless someone manually goes and edits the category for each incoming case.

Fog Creek Case FC1689417

flag

2 Answers

2

This is a very clear use case and something that has been asked for by other users, though in a different form. We are considering allowing you to specify the category of a given mailbox. The feature case number is 1689417.

link|flag
Excellent! That would do it. Thanks. – Roman Oct 5 2009 at 10:50
1

For some situations, maybe all you need is a different default category for some users. Then just create a customization with some (jQuery) Javascript like this:

$('#Menu_New').attr('href', $('#Menu_New').attr('href') + '&ixCategory=3');

This changes the New Case button to use the category with internal value 3 (Inquiry?) as the default. Just experiment to find the value you need.

Note that this will not help at all with emails.

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.