We recently had a network connectivity blip that affected the server running our service that uses a FIX connection to get transaction details. QuickFIX/n recovered from the outage but ended up skipping the message that was in flight at the time of the outage because it was rejected with SENDINGTIME_ACCURACY_PROBLEM as the reason.
I monitor all FIX rejections, and there has never been a time when I would have actually wanted to treat messages flagged with SENDINGTIME_ACCURACY_PROBLEM any differently than other messages. Now that this has caused us to drop a fill, I'd like to disable this rejection reason (perhaps logging it, but not sending a REJECT message or skipping over it).
However, I can't find any way in QuickFIX/n to customize the rejection behavior (there's no method to implement or override I've been able to find). Is there any way to tailor the rejection reasons, either in code or in configuration?
We're using FIX 4.4, in case that matters.