Difference between revisions of "Troubleshooting Catglobe Sink Setup"

From Catglobe Wiki
Jump to: navigation, search
Line 10: Line 10:
  
 
=== III. UnRegisterSink.bat <br>  ===
 
=== III. UnRegisterSink.bat <br>  ===
 +
 +
cscript smtpreg.vbs /remove 1 OnArrival CatGlobeMailTransportSubmission_<span style="color: rgb(153, 51, 0);">VersionName</span><br>REM "if you are going to uninstall the sink on a 32bit Windows 2003 Server, remove the REM tag from the below line"<br>REM C:\Windows\Microsoft.NET\FrameWork\v2.0.50727\regasm CatGlobeSmtpEventSink.dll /unregister<br>REM "if you are going to uninstall the sink on a 64bit Windows 2003 Server, remove the REM tag from the below line"<br>C:\Windows\Microsoft.NET\FrameWork64\v2.0.50727\regasm CatGlobeSmtpEventSink.dll /unregister<br>
  
 
=== IV. Other config files: RestartSMTP.bat &amp; StartSMTP.bat &amp; StopSMTP.bat  ===
 
=== IV. Other config files: RestartSMTP.bat &amp; StartSMTP.bat &amp; StopSMTP.bat  ===
  
 
[[Category:Network_Setup]]
 
[[Category:Network_Setup]]

Revision as of 06:46, 25 November 2009

Catglobe Smtp Event Sink

I. CatGlobeSmtpEventSink.dll.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="Debug" value="true" />
<add key="LogPath" value="C:\Temp\CGSink_58.log" />
<add key="Impersonate" value="true" />
<add key="domain" value="" />
<add key="userName" value="ASPNET_Impersonated" />
<add key="password" value="Catglobe" />
<add key="ConnectionString" value="connect timeout=60;server=SERVERNAME;uid=USER;pwd=PASSWORD;database=CatGlobeAdministration"/>
<add key="BlockedDomains" value="abcxyz.com"/>
</appSettings>
</configuration>

II. RegisterSink.bat

C:\Windows\Microsoft.NET\FrameWork64\v2.0.50727\regasm CatGlobeSmtpEventSink.dll /codebase
cscript smtpreg.vbs /add 1 OnArrival CatGlobeMailTransportSubmission_VersionName CatGlobeSmtpEventSink_VersionName.CatGlobeMailTransportSubmission "RCPT TO=*@*.catglobe.com"
cscript smtpreg.vbs /setprop 1 OnArrival CatGlobeMailTransportSubmission_Heisenberg "Source" Priority 20000

III. UnRegisterSink.bat

cscript smtpreg.vbs /remove 1 OnArrival CatGlobeMailTransportSubmission_VersionName
REM "if you are going to uninstall the sink on a 32bit Windows 2003 Server, remove the REM tag from the below line"
REM C:\Windows\Microsoft.NET\FrameWork\v2.0.50727\regasm CatGlobeSmtpEventSink.dll /unregister
REM "if you are going to uninstall the sink on a 64bit Windows 2003 Server, remove the REM tag from the below line"
C:\Windows\Microsoft.NET\FrameWork64\v2.0.50727\regasm CatGlobeSmtpEventSink.dll /unregister

IV. Other config files: RestartSMTP.bat & StartSMTP.bat & StopSMTP.bat