Here's a suggestion: I tried to the the server example up and running that sends the feedback as email.
It would never send my crash reports until I discovered that it requires a custom key to be present: "application". I had to add this to my code to get it to work:
- (NSDictionary*) customParametersForFeedbackReport
{
return [NSDictionary dictionaryWithObjectsAndKeys:@"TestApp", @"application", nil];
}
Either I completely missed that from the docs or it's not there ;) Maybe something worth adding. Or, alternatively, just add it automatically based on the application name...
Thanks again,
Rico