Hi there, I have a problem with my event sink. It is developed as a COM+ and I have registered it in the SystemMailBox for receiving OnSyncSave notifications. My problem is, that the component receives all messages twice(!) The component filters all notifications so I only process EVT_IS_DELIVERED | EVT_SYNC_COMMITTED - but all mails are received twice - even though there only exists one mail. Does anybody have a reason for this - and hopefully a solution? Best regards /Michael
How are you checking if it's EVT_IS_DELIVERED or EVT_SYNC_COMMITTED? My code in C# looks like this: if (( lFlags & (int)CDO.EVT_SINK_FLAGS.EVT_IS_DELIVERED ) > 0 && ( lFlags & (int)CDO.EVT_SINK_FLAGS.EVT_SYNC_COMMITTED ) > 0 ) Also, are you sure you haven't registered the bindings twice?
Are you using OWA to compose? I've seen some OWA operations that post twice.