Metabase Property Reference


RouteAction Metabase Property

Updated: August 22, 2005

Applies To: Windows Server 2003, Windows Server 2003 with SP1

The RouteAction property flags the various SMTP options. This gives properties to a connector.

 

Attribute Name Attribute Value

XML Data Type

DWORD

WMI Data Type

SINT32

ADSI Data Type

DWORD

ABO Data Type

DWORD

ABO Metabase Identifier

No friendly name is defined for this identifier in iiscnfg.h. Search the systemroot\System32\Inetsrv\MBSchema.xml file for this property and use the integer from its ID attribute.

Attributes

INHERIT

Default Value

0

MetaFlagsEx

CACHE_PROPERTY_MODIFIED

User Type

IIS_MD_UT_SERVER

ID

36946

Configurable Locations

You can configure this property at the following locations in the IIS metabase.

 

Metabase Path IIS Admin Object Type

/LM/SMTPSVC

IIsSmtpService

/LM/SMTPSVC/n

IIsSmtpServer

/LM/SMTPSVC/n/Domain

IIsSmtpDomain

Code Example

For general code examples, see Code Examples to Configure Metabase Properties.

Tags :


Community Content

Thomas Born
What the values of RouteAction are
<pre>RouteAction Hex Decimal<br /><br /><br />SMTP_NO_ACTION 0x00000000 0<br />SMTP_DROP 0x00000001 1<br />SMTP_SMARTHOST 0x00000002 2<br />SMTP_SSL 0x00000004 4<br />SMTP_SASL 0x00000008 8<br />SMTP_ALIAS 0x00000010 16<br />SMTP_DELIVER 0x00000020 32<br />SMTP_DEFAULT 0x00000040 64<br />SMTP_AUTH_NTLM 0x00000080 128<br />SMTP_AUTH_CLEARTEXT 0x00000100 256<br />SMTP_ETRN_CMD 0x00000200 512<br />SMTP_IP_RELAY 0x00000400 1024<br />SMTP_AUTH_RELAY 0x00000800 2048<br />SMTP_DOMAIN_RELAY 0x00001000 4096<br />SMTP_CSIDE_TURN 0x00002000 8192<br />SMTP_CSIDE_ETRN 0x00004000 16384<br />SMTP_DISABLE_ETRN 0x00008000 32768<br />SMTP_CHUNKING 0x00010000 65536<br />SMTP_DISABLE_CHUNK 0x00020000 132072<br />SMTP_DISABLE_BMIME 0x00040000 264144<br />SMTP_DISABLE_DSN 0x00080000 528288<br />SMTP_DISABLE_PIPELINE 0x00100000 1056576<br />SMTP_AUTH_KERBEROS 0x00200000 2113152<br />SMTP_USE_HELO 0x00400000 4226304</pre> <p> <br /> <br />So if you want to use the DELIVER option together with the IP_RELAY option the RouteAction would be 32 + 1024 = 1056. Simply put the RouteAction Property is a bit flag field.<br /><br />This information is from <mtps:InstrumentedLink NavigateUrl="http://www.tech-archive.net/Archive/Development/microsoft.public.win32.programmer.wmi/2004-10/0020.html" runat="server" xmlns:mtps="http://msdn2.microsoft.com/mtps">http://www.tech-archive.net/Archive/Development/microsoft.public.win32.programmer.wmi/2004-10/0020.html</mtps:InstrumentedLink></p>

Benhaha
What do the flags do?
0x4 = 4 = Use TLS<br />0x10 = 16 = Alias domain<br />0x1000 = 4096 = Allow relaying of incoming mail<br />0x400000 = 4194304 = Send HELO instead of EHLO<br /><br />What do all the others do? The default seems to be 2. What does that control?
Tags :

Page view tracker