8

Is there any way to change case information using email?

Example: I'm in a meeting and I get a new case from Fogbugz, but it was not assigned to the right area or priority. Is there anyway for me to reply to email with some code to change the case attributes?

Fog Creek Case FC1897122

flag

3 Answers

4

We had a similar case open for a possible minimal interaction with cases via reply to the notification emails. I have opened a case to consider more control over editing case fields.

Please up-vote this question to show your support for adding this feature.

In the meantime, you could try writing a plugin to add this functionality. I would have the plugin implement IPluginBugCommit. It can check on commit for incoming emails from a fogbugz user, then look for a signal that the email should be parsed as a command, e.g. a special string in the subject. The plugin could then parse the body and commit the changes you want as the FogBugz user who is emailing.

link|flag
We currently use a tool that allows us to edit a case via a special syntax in the email subject line. We are trying to migrate to fogbugz and would love being able to do the same with it. If would even be better to not even have to respond to a notification but just email FB to tell it: close this case, update that field, ... – Rodrigue Jun 25 2010 at 15:38
Make sure to up-vote the question here to show your support. You could try writing a plugin to give you this kind of functionality. I have updated my answer here. – adambox Jun 28 2010 at 15:05
1

In order to limit the number of things there are to work on, and thereby eventually get something done, we design FogBugz to be "lived-in". The web interface is the primary interface. If you need another interface, the application programming interface has enough capability to duplicate this functionality.

We are going to focus, for now, on improving and extending FogBugz's capabilities, not its interfaces.

link|flag
1

(Only two years late...I'm sure this is still an interesting conversation to someone...)

While our team is transitioning to FogBugz, lots of folks are still more comfortable "living in" email than in FB. We've written a little program to parse instructions out of mail sent to a special mailbox. The program then calls the api to update bugz. Right now, we mostly use it for user assignment (TAKE Case 1234 assigns the case to the sender), but we're growing it as needed.

For folks who want tighter email integration, that may be the way to go.

link|flag

Your Answer

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