Platform SDK: CDO for Windows 2000

nntpprocessing Field

A bit-mask used to specify what NNTP processing should occur for a message.

Full Name

http://schemas.microsoft.com/cdo/nntpenvelope/nntpprocessing

OLE DB Type

DBTYPE_I4

Variant SubType

[Visual Basic,VBScript] Long

[C++,IDL] long

Remarks

This field is a bit-mask used to specify how the posted NNTP message is to be handled. The value ranges from 0 to 7 (4 & 2 & 1 & 0). These bits can be set using the following enumeration constants:

Name Value Description
cdoPostMessage 1 The message will be posted.
CdoProcessControl 2 The message will be sent through process control.
CdoProcessModerator 4 The message will be sent through the moderator.

All even values for this process (in other words, without the cdoPostMessage bit set) are blocked from being posted, and neither process control nor process moderators are run for the message. The meaningful values are therefore

even or zero - block posting; no process control; no process moderator

1 - post message; no process control; no process moderator

3 - post message and run process control

5 - post message and run process moderator

7 - post message, run process control, and run process moderator

This is not available during the NNTP OnPostFinal event.

See Also

IMessage.EnvelopeFields

SMTP/NNTP Transport Event Sinks_with_CDO