There are some cases (such as when a case is opened via email) to modify the OpenedBy user from the default specified for that mailbox to something else.
Is changing the OpenedBy possible via the plugin API? We are using FogBugz 7.3.0
I have been (unsuccessfully) attempting to do this with the following:
if (people.Length == 1)
{
// Pretty good chance this is a match!
e.bug.IgnorePermissions = true;
e.bug.ixPersonOpenedBy = people[0].ixPerson;
e.bug.Commit("Found that this probably submitted by : " + people[0].sFullName + " " + people[0].ixPerson);
e.bug.IgnorePermissions = false;
}