I have a successfully implemented Store event sink, and now I need to make a Protocol event sink because I need the envelope fields. I'm using this as a guide: http://support.microsoft.com/kb/894286/en-us Everything compiled ok, but when I try to register it I get the error "invalid event: OnTransportSubmission" there is the registration command I'm using: cscript smtpreg.vbs /add 1 OnTransportSubmission FileSink Namespace.Class "MAIL FROM=*" I tried registering it with OnArrival for the event and it worked. What could I be doing wrong?
should be: cscript smtpreg.vbs /add 1 OnSubmission FileSink Namespace.Class "MAIL FROM=*" "David A. Coursey" wrote in message news:ED9BBCC6-9A54-4EF4-BF90-E5DDEB939CDB@microsoft.com... > I have a successfully implemented Store event sink, and now I need to make a > Protocol event sink because I need the envelope fields. > > I'm using this as a guide: http://support.microsoft.com/kb/894286/en-us > > Everything compiled ok, but when I try to register it I get the error > "invalid event: OnTransportSubmission" > > there is the registration command I'm using: > cscript smtpreg.vbs /add 1 OnTransportSubmission FileSink Namespace.Class > "MAIL FROM=*" > > I tried registering it with OnArrival for the event and it worked. What > could I be doing wrong? >