Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

Customized messaging transports require one registry entry that specifies the name for the new message transport, along with the name of the DLL that implements it.

To register a customized messaging transport

  • Create a new registry key with the following registry key structure. In the key, replace <TransportName>with the name of the new message transport. Use this same name for the value of the "Name"Key Value.

    Copy Code
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Inbox\Svc\
    <TransportName>]
    	"
    Name"		= REG_SZ: "MyTransportName"	// The name of
    the Transport.
    	"DLL"		 = REG_SZ: "MyTranport.dll"	 // The DLL
    containing the transport entry point.
    	"UserCanCreate" = REG_DWORD: 1				 // An integer
    that indicates whether users can create new Accounts for this
    Transport.
    
    Note:
    Use of the UserCanCreatekey entry is optional. If used and if it has a value of 1, the user can create new accounts using this transport. The transport appears in the Transport Pickerin the Service Setup Wizard.

Example

The following code example demonstrates how to register an MMS message transport.

Copy Code
[HKEY_LOCAL_MACHINE\Software\Microsoft\Inbox\Transports\
MyMMS]
	"Name" = "MyMMS"
	"DLL"  = "MyMMS.dll"

See Also