﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Newest KB Articles</title>
    <description>Recent additions to the Knowledge Base from Millennium Systems Inc</description>
    <link>http://track.nextmill.net/KB/browse.aspx</link>
    <dt>Tue, 07 Sep 2010 00:50:36 GMT</dt>
    <generator>SmarterTrack Professional 5.2.3890</generator>
    <item>
      <title>Using Visual Studio 2008 with IIS 7</title>
      <link>http://track.nextmill.net/KB/a86/using-visual-studio-2008-with-iis-7.aspx</link>
      <pubDate>Sun, 02 May 2010 16:24:14 GMT</pubDate>
      <guid isPermaLink="false">kbarticle86</guid>
      <description>How to use Visual Studio 2008 with Windows 2008 IIS 7 servers</description>
    </item>
    <item>
      <title>Rewriting Non WWW to WWW URL  (IIS7 Servers Only)</title>
      <link>http://track.nextmill.net/KB/a85/rewriting-non-www-to-www-url-iis7-servers-only.aspx</link>
      <pubDate>Fri, 01 May 2009 18:22:08 GMT</pubDate>
      <guid isPermaLink="false">kbarticle85</guid>
      <description>This article applies only to &lt;strong&gt;Windows 2008&lt;/strong&gt; servers with &lt;strong&gt;IIS7&lt;/strong&gt; (sites hosted on our raptor13 or newer). It explains how to use the IIS Rewrite Module to direct incoming traffic for http://domainname.com to http://www.domainname.com, a popular thing to do for SEO.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 1:&lt;/em&gt; Download the &lt;strong&gt;web.config&lt;/strong&gt; file from your site root folder.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 2:&lt;/em&gt; Open this file in your favorite text editor and insert the following redirection code inside the &lt;strong&gt;&amp;lt;configuration&amp;gt;&lt;/strong&gt; tags.&lt;br&gt;
&lt;br&gt;
&lt;p class="codeblock"&gt;&amp;lt;system.webServer&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;rewrite&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;rules&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;clear /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;rule name="WWW Rewrite" enabled="true"&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;match url="(.*)" /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;conditions&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add input="{HTTP_HOST}" negate="true" pattern="^www\.([.a-zA-Z0-9]+)$" /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/conditions&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;action type="Redirect" url="http://www.{HTTP_HOST}/{R:0}" appendQueryString="true" redirectType="Permanent" /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/rule&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/rules&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/rewrite&amp;gt; &lt;br&gt;
&amp;lt;system.webServer&amp;gt;&lt;/p&gt;
&lt;br&gt;
&lt;em&gt;Step 3:&lt;/em&gt; Save the file and upload it back to your FTP&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
If if the &lt;strong&gt;&amp;lt;system.webServer&amp;gt;&lt;/strong&gt; already exists in your &lt;strong&gt;web.config&lt;/strong&gt; place the code minus the &amp;lt;system.webServer&amp;gt; tags inside the existing tag structure.&lt;br&gt;</description>
    </item>
    <item>
      <title>Setting Up 301 Redirects (IIS7 Servers Only)</title>
      <link>http://track.nextmill.net/KB/a84/setting-up-301-redirects-iis7-servers-only.aspx</link>
      <pubDate>Fri, 01 May 2009 18:12:26 GMT</pubDate>
      <guid isPermaLink="false">kbarticle84</guid>
      <description>This article applies only to &lt;strong&gt;Windows 2008&lt;/strong&gt; servers with &lt;strong&gt;IIS7&lt;/strong&gt; (sites hosted on our raptor13 server or newer). If you site is on another server please open a support ticket.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 1:&lt;/em&gt; Download the &lt;strong&gt;web.config&lt;/strong&gt; file from your site root folder.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 2:&lt;/em&gt; Open this file in your favorite text editor and insert the following redirection code inside the &lt;strong&gt;&amp;lt;configuration&amp;gt;&lt;/strong&gt; tags.&lt;br&gt;
&lt;p class="codeblock"&gt;&lt;em&gt;&amp;lt;location path="some_page.html"&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;system.webServer&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;httpRedirect enabled="true" destination="http://www.domain.com/other_file.html" exactDestination="true" httpResponseStatus="Permanent" /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/system.webServer&amp;gt;&lt;br&gt;
&amp;lt;/location&amp;gt;&lt;/em&gt;&lt;/p&gt;
&lt;em style="background-color: rgb(0, 0, 255);"&gt;&lt;/em&gt;&lt;br&gt;
&lt;em&gt;Step 3:&lt;/em&gt; Save the file and upload it back to your FTP&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
If you are redirecting a page in a sub folder of your site and the folder does not have a &lt;strong&gt;web.config&lt;/strong&gt; file you can create one in a text, save it as &lt;strong&gt;web.config&lt;/strong&gt; and upload it to the sub folder.&lt;br&gt;
&lt;br&gt;
&lt;em style="background-color: rgb(0, 0, 255);"&gt;
&lt;p class="codeblock"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;br&gt;
&amp;lt;configuration&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;location path="some_page.html"&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;system.webServer&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;httpRedirect enabled="true" destination="http://www.domain.com/other_file.html" exactDestination="true" httpResponseStatus="Permanent" /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/system.webServer&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/location&amp;gt;&lt;br&gt;
&amp;lt;/configuration&amp;gt;&lt;/p&gt;
&lt;/em&gt;</description>
    </item>
    <item>
      <title>User: Setting up an auto responder or vacation message</title>
      <link>http://track.nextmill.net/KB/a83/user-setting-up-an-auto-responder-or-vacation-message.aspx</link>
      <pubDate>Mon, 20 Apr 2009 19:48:55 GMT</pubDate>
      <guid isPermaLink="false">kbarticle83</guid>
      <description>Log in to SmarterMail interface for your domain name (http://mail.yourdomain.com) using your full email address and password.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 1:&lt;/em&gt; Click the 'Settings' tab in the top navigation bar&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 2:&lt;/em&gt; Expand the 'My Settings' node if it isn't already and click 'Auto-Responder'&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 3:&lt;/em&gt; Check the 'Enable auto responder' option&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 4:&lt;/em&gt; Click the 'Auto Responder Message' tab&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 5:&lt;/em&gt; Create a subject and body for your auto responder&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 6:&lt;/em&gt; Click the 'Save' button near the top&lt;br&gt;
&lt;br&gt;
To turn off the auto responder when it's no longer needed, uncheck the 'Enable auto responder' option under the 'Options' tab.</description>
    </item>
    <item>
      <title>Administrator: Tweaking the spam filter settings</title>
      <link>http://track.nextmill.net/KB/a82/administrator-tweaking-the-spam-filter-settings.aspx</link>
      <pubDate>Mon, 20 Apr 2009 19:48:31 GMT</pubDate>
      <guid isPermaLink="false">kbarticle82</guid>
      <description>Access to this features requires you to log in to SmarterMail
(http://mail.yourdomain.com) using the administrative account, refer to
your setup email. If it is your first time using the service the web
mail system will ask you to set a time zone before logging in, just
select your local time zone and click the 'Save' link.&lt;br&gt;
&lt;br&gt;
We
recommend using the default filter settings for the best results. If
you notice a particular domain or email is being blocked you can add it
to a 'Trusted Senders' list so it will bypass the spam check.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 1:&lt;/em&gt; Click the 'Settings' tab in the top navigation bar&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 2:&lt;/em&gt; Expand the 'Domain Settings' node and click 'Spam Filtering'&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 3:&lt;/em&gt; Click the 'Trusted Senders' tab&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 4:&lt;/em&gt; Enter either an email address (e.g. user@domain.com) or a domain (e.g. domain.com), one per line&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 5:&lt;/em&gt; Click the 'Save' button near the top&lt;br&gt;
&lt;br&gt;
To change the filter settings or change how SmarterMail handles spam marked emails, perform the following steps.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 1:&lt;/em&gt; Click the 'Settings' tab in the top navigation bar&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 2:&lt;/em&gt; Expand the 'Domain Settings' node and click 'Spam Filtering'&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 3:&lt;/em&gt; On the 'Options' tab check 'Override Spam Settings'&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 4:&lt;/em&gt; Select the 'Actions' tab&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 5:&lt;/em&gt; Set your action preferences and click the 'Save' link near the top&lt;br&gt;
&lt;br&gt;
For
more details on all the SmarterMail spam filter features click the
'Help' tab inside your web mail control panel to access the
comprehensive knowlegde base included with your web mail application!</description>
    </item>
    <item>
      <title>Administrator: Editing email users</title>
      <link>http://track.nextmill.net/KB/a81/administrator-editing-email-users.aspx</link>
      <pubDate>Mon, 20 Apr 2009 19:48:08 GMT</pubDate>
      <guid isPermaLink="false">kbarticle81</guid>
      <description>Access to this features requires you to log in to SmarterMail
(http://mail.yourdomain.com) using the administrative account, refer to
your setup email. If it is your first time using the service the web
mail system will ask you to set a time zone before logging in, just
select your local time zone and click the 'Save' link.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 1:&lt;/em&gt; Click the 'Settings' tab button on top&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 2:&lt;/em&gt; Expand the 'Domain Settings' node in the settings panel on the left&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 3:&lt;/em&gt; Click the 'Users' option in the left panel&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 4:&lt;/em&gt; Check the user you want to edit and click the 'Edit' button near the top of the right panel&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 5:&lt;/em&gt; Under the 'User' tab edit the form fields&lt;br&gt;
&lt;br&gt;
&amp;#8226; Username: select a name that isn't used yet as an account or alias&lt;br&gt;
&amp;#8226; Password: type in a strong password&lt;br&gt;
&amp;#8226; Display Name: name that will be listed as sender, full email is used when left blank&lt;br&gt;
&amp;#8226; Reply Address: email used when recipient replies, full email is used when left blank&lt;br&gt;
&amp;#8226; Time Zone: select the user's local time zone&lt;br&gt;
&amp;#8226; Mailbox Limit: allowed space for this user, set to 0 for unlimited within the total allowed for the domain&lt;br&gt;
&amp;#8226; Options: check any account options you want to apply for this user&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 6:&lt;/em&gt; You can further customize this user's options via the other tabs&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 7:&lt;/em&gt; Click the 'Save' link near the top&lt;br&gt;
&lt;br&gt;
For
more details on all the SmarterMail features click the 'Help' tab
inside your web mail control panel to access the comprehensive
knowlegde base included with your web mail application!</description>
    </item>
    <item>
      <title>Administrator: Adding email users</title>
      <link>http://track.nextmill.net/KB/a80/administrator-adding-email-users.aspx</link>
      <pubDate>Mon, 20 Apr 2009 19:47:49 GMT</pubDate>
      <guid isPermaLink="false">kbarticle80</guid>
      <description>Access to this features requires you to log in to SmarterMail
(http://mail.yourdomain.com) using the administrative account, refer to
your setup email. If it is your first time using the service the web
mail system will ask you to set a time zone before logging in, just
select your local time zone and click the 'Save' link.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 1:&lt;/em&gt; Click the 'Settings' tab button on top&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 2:&lt;/em&gt; Expand the 'Domain Settings' node in the settings panel on the left&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 3:&lt;/em&gt; Click the 'Users' option in the left panel&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 4:&lt;/em&gt; Click the 'New' button on top of the right panel&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 5:&lt;/em&gt; Under the 'User' tab complete the form fields&lt;br&gt;
&lt;br&gt;
&amp;#8226; Username: select a name that isn't used yet as an account or alias&lt;br&gt;
&amp;#8226; Password: type in a strong password&lt;br&gt;
&amp;#8226; Display Name: name that will be listed as sender, full email is used when left blank&lt;br&gt;
&amp;#8226; Reply Address: email used when recipient replies, full email is used when left blank&lt;br&gt;
&amp;#8226; Time Zone: select the user's local time zone&lt;br&gt;
&amp;#8226; Mailbox Limit: allowed space for this user, set to 0 for unlimited within the total allowed for the domain&lt;br&gt;
&amp;#8226; Options: check any account options you want to apply for this user&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 6:&lt;/em&gt; You can further customize this user's options via the other tabs&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Step 7:&lt;/em&gt; Click the 'Save' button near the top&lt;br&gt;
&lt;br&gt;
For
more details on all the SmarterMail features click the 'Help' tab
inside your web mail control panel to access the comprehensive
knowlegde base included with your web mail application!</description>
    </item>
    <item>
      <title>Retrieving your domain email with Palm Centro</title>
      <link>http://track.nextmill.net/KB/a79/retrieving-your-domain-email-with-palm-centro.aspx</link>
      <pubDate>Sun, 25 Jan 2009 00:11:16 GMT</pubDate>
      <guid isPermaLink="false">kbarticle79</guid>
      <description>How to configure your domain email to be access via your Palm Centro phone</description>
    </item>
    <item>
      <title>Retrieving your domain email with Apple IPhone</title>
      <link>http://track.nextmill.net/KB/a78/retrieving-your-domain-email-with-apple-iphone.aspx</link>
      <pubDate>Sat, 24 Jan 2009 16:08:19 GMT</pubDate>
      <guid isPermaLink="false">kbarticle78</guid>
      <description>Instructions on how to setup your domain email on your Apple IPhone</description>
    </item>
    <item>
      <title>Retrieving your domain email with Windows Mobile 6.1 devices</title>
      <link>http://track.nextmill.net/KB/a77/retrieving-your-domain-email-with-windows-mobile-61-devices.aspx</link>
      <pubDate>Sat, 24 Jan 2009 16:00:54 GMT</pubDate>
      <guid isPermaLink="false">kbarticle77</guid>
      <description>Article explains step by step how to setup email on Windows Mobile 6.1</description>
    </item>
  </channel>
</rss>