<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>ssfd Wiki &amp; Documentation Rss Feed</title><link>http://ssfd.codeplex.com/Wiki/View.aspx?title=Home</link><description>ssfd Wiki Rss Description</description><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/wikipage?version=12</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt;&lt;br&gt;
SMTP Server Emulation&lt;br&gt;
&lt;br&gt;
Version 2.0 now available as a clickonce install and a standalone (see downloads)&lt;br&gt;
&lt;br&gt;
Here's the write up&lt;br&gt;
&lt;a href="http://antix.co.uk/projects/smtpimpostor"&gt;http://antix.co.uk/projects/smtpimpostor&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Here's the download (click once)&lt;br&gt;
&lt;a href="http://antix.co.uk/projects/smtpimpostor/2/Setup.exe"&gt;http://antix.co.uk/projects/smtpimpostor/2/Setup.exe&lt;/a&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;br&gt;
Here's the write up&lt;br&gt;
&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Here's the Click Once auto updating setup&lt;br&gt;
&lt;a href="http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe"&gt;http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
There is a standalone setup also available in the downloads tab too&lt;/p&gt;
&lt;p&gt;&lt;a href="http://flattr.com/thing/712778/SMTP-Impostor-formally-SMTP-Server-for-Developers" target="_blank"&gt;&lt;img title="Flattr this" src="http://api.flattr.com/button/flattr-badge-large.png" border="0" alt="Flattr this"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Wed, 06 Jun 2012 07:56:04 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120606075604A</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/wikipage?version=11</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;Version 2.0 now available as a clickonce install and a standalone (see downloads)&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpimpostor" class="externalLink"&gt;http://antix.co.uk/projects/smtpimpostor&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the download (click once)&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpimpostor/2/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/smtpimpostor/2/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;hr /&gt;
&lt;br /&gt;Here&amp;#39;s the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Mon, 09 May 2011 13:02:28 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110509010228P</guid></item><item><title>Updated Wiki: Documentation</title><link>http://ssfd.codeplex.com/documentation?version=2</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;&lt;a href="http://ssfd.codeplex.com/wikipage?title=Logging&amp;referringTitle=Documentation"&gt;Logging&lt;/a&gt;&lt;/h1&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Fri, 06 May 2011 16:29:20 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20110506042920P</guid></item><item><title>Updated Wiki: Logging</title><link>http://ssfd.codeplex.com/wikipage?title=Logging&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Logging&lt;/h1&gt;
SMTP Impostor uses System.Diagnostics.Trace for logging activity &lt;br /&gt;to enable logging you need to add a listener to the config file &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
  &amp;lt;system.diagnostics&amp;gt;
    &amp;lt;trace autoflush=&amp;quot;true&amp;quot;&amp;gt;
        &amp;lt;listeners&amp;gt;
          &amp;lt;add 
              name=&amp;quot;File&amp;quot; type=&amp;quot;System.Diagnostics.TextWriterTraceListener&amp;quot; 
              initializeData=&amp;quot;C:\temp\Impostor.Log&amp;quot; /&amp;gt; 
        &amp;lt;/listeners&amp;gt;
    &amp;lt;/trace&amp;gt;
  &amp;lt;/system.diagnostics&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;i&gt;make sure the application has write access to the log file&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;for the standard client installed by ClickOnce you have to find the install dir, this can be done by;
&lt;ol&gt;&lt;li&gt;run the Impostor client&lt;/li&gt;
&lt;li&gt;open Windows Task Manager&lt;/li&gt;
&lt;li&gt;find the process Antix.Mail.Smtp.Impostor.Client.exe and click properties&lt;/li&gt;
&lt;li&gt;the location is shown on the General tab&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;If you are referencing SMTP impostor you can also change how logging is done, the static class &lt;b&gt;Log&lt;/b&gt; has a number of &amp;quot;Action&amp;quot; properties which you can set to a lambda to call Log4Net or what ever you like.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
        [TestMethod]
        public void LogExceptionOverridenAction() {
            var log = new StringBuilder();

            Log.LogErrorAction = (f, a) =&amp;gt; {
                                     log.AppendLine(DateTime.Now.ToString());
                                     log.AppendLine(string.Format(f, a));
                                 };

            try {
                throw new Exception(EXCEPTION_TEXT);
            }
            catch (Exception ex) {
                Log.Error(&amp;quot;LogException {0}&amp;quot;, ex);
            }

            Assert.IsTrue(log.Length &amp;gt; 0);
            Assert.IsTrue(log.ToString().Contains(EXCEPTION_TEXT));
        }
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Fri, 06 May 2011 16:29:10 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Logging 20110506042910P</guid></item><item><title>Updated Wiki: Documentation</title><link>http://ssfd.codeplex.com/documentation?version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Logging&lt;/h1&gt;
SMTP Impostor uses System.Diagnostics.Trace for logging activity &lt;br /&gt;to enable logging you need to add a listener to the config file &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
  &amp;lt;system.diagnostics&amp;gt;
    &amp;lt;trace autoflush=&amp;quot;true&amp;quot;&amp;gt;
        &amp;lt;listeners&amp;gt;
          &amp;lt;add 
              name=&amp;quot;File&amp;quot; type=&amp;quot;System.Diagnostics.TextWriterTraceListener&amp;quot; 
              initializeData=&amp;quot;C:\temp\Impostor.Log&amp;quot; /&amp;gt; 
        &amp;lt;/listeners&amp;gt;
    &amp;lt;/trace&amp;gt;
  &amp;lt;/system.diagnostics&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;i&gt;make sure the application has write access to the log file&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;for the standard client installed by ClickOnce you have to find the install dir, this can be done by;
&lt;ol&gt;&lt;li&gt;run the Impostor client&lt;/li&gt;
&lt;li&gt;open Windows Task Manager&lt;/li&gt;
&lt;li&gt;find the process Antix.Mail.Smtp.Impostor.Client.exe and click properties&lt;/li&gt;
&lt;li&gt;the location is shown on the General tab&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;If you are referencing SMTP impostor you can also change how logging is done, the static class &lt;b&gt;Log&lt;/b&gt; has a number of &amp;quot;Action&amp;quot; properties which you can set to a lambda to call Log4Net or what ever you like.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
        [TestMethod]
        public void LogExceptionOverridenAction() {
            var log = new StringBuilder();

            Log.LogErrorAction = (f, a) =&amp;gt; {
                                     log.AppendLine(DateTime.Now.ToString());
                                     log.AppendLine(string.Format(f, a));
                                 };

            try {
                throw new Exception(EXCEPTION_TEXT);
            }
            catch (Exception ex) {
                Log.Error(&amp;quot;LogException {0}&amp;quot;, ex);
            }

            Assert.IsTrue(log.Length &amp;gt; 0);
            Assert.IsTrue(log.ToString().Contains(EXCEPTION_TEXT));
        }
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Fri, 06 May 2011 16:03:15 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20110506040315P</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/wikipage?version=10</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;Version 2.0 now available as a clickonce install&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpimpostor" class="externalLink"&gt;http://antix.co.uk/projects/smtpimpostor&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the download (click once)&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpimpostor/2/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/smtpimpostor/2/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;hr /&gt;
&lt;br /&gt;Here&amp;#39;s the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Sat, 27 Nov 2010 10:45:52 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20101127104552A</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/wikipage?version=9</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;Version 2.0 RC1 now available as a clickonce install&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpimpostor" class="externalLink"&gt;http://antix.co.uk/projects/smtpimpostor&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpimpostor/2/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/smtpimpostor/2/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;hr /&gt;
&lt;br /&gt;Here&amp;#39;s the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Wed, 17 Nov 2010 22:07:16 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20101117100716P</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/wikipage?version=8</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;Version 2.0 RC1 now available as a clickonce install&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpimpostor" class="externalLink"&gt;http://antix.co.uk/projects/smtpimpostor&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;hr /&gt;
&lt;br /&gt;Here&amp;#39;s the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Wed, 17 Nov 2010 22:06:17 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20101117100617P</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/wikipage?version=7</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;Version 2.0 RC1 now available as a clickonce install&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpimpostor" class="externalLink"&gt;http://antix.co.uk/projects/smtpimpostor&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;hr /&gt;-&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Wed, 17 Nov 2010 22:06:07 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20101117100607P</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/wikipage?version=6</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here's the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here's the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;br /&gt;Oh ambassador ...&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Tue, 03 Nov 2009 20:48:10 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20091103084810P</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here's the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here's the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe" class="externalLink"&gt;http://antix.co.uk/projects/SMTPServerForDevelopers/Setup.exe&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;a href="http://ssfd.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30795" class="externalLink"&gt;http://ssfd.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30795&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Oh ambassador ...&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Tue, 28 Jul 2009 19:55:52 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090728075552P</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here's the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here's the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://ssfd.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30795" class="externalLink"&gt;http://ssfd.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30795&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;a href="http://ssfd.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30795" class="externalLink"&gt;http://ssfd.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30795&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Oh ambassador ...&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Tue, 28 Jul 2009 19:43:32 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090728074332P</guid></item><item><title>Updated Wiki: Home</title><link>http://ssfd.codeplex.com/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;SMTP Server Emulation&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here's the write up&lt;br /&gt;&lt;a href="http://antix.co.uk/projects/smtpserverfordevelopers" class="externalLink"&gt;http://antix.co.uk/projects/smtpserverfordevelopers&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here's the Click Once auto updating setup&lt;br /&gt;&lt;a href="http://ssfd.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30795" class="externalLink"&gt;http://ssfd.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30795&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a standalone setup also available in the downloads tab too&lt;br /&gt;&lt;br /&gt;Oh ambassador ...&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Antix</author><pubDate>Tue, 28 Jul 2009 19:42:54 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090728074254P</guid></item></channel></rss>