Platform SDK: CDO for Windows 2000 |
A bit-mask used to specify what NNTP processing should occur for a message.
http://schemas.microsoft.com/cdo/nntpenvelope/nntpprocessing
DBTYPE_I4
[Visual Basic,VBScript] Long
[C++,IDL] long
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.