<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>M3Server Support</title>
	
	<link>http://blog.m3server.com</link>
	<description>blog.M3 - "Tech Topics and News"</description>
	<lastBuildDate>Wed, 08 Feb 2012 17:15:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/M3serverSupport" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="m3serversupport" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">M3serverSupport</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>google page speed – tips</title>
		<link>http://blog.m3server.com/2012/02/google-page-speed-tips/</link>
		<comments>http://blog.m3server.com/2012/02/google-page-speed-tips/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 16:19:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=226</guid>
		<description><![CDATA[Have you been to: https://developers.google.com/pagespeed/ If you have, you might notice that some of your changes take, and some don&#8217;t.  I almost went insane until I realized that this page was caching some results, regardless of refreshing or reloading the page. Solution?  Download firebug plugin for Firefox, and then visit this page to download page [...]]]></description>
			<content:encoded><![CDATA[<p>Have you been to:</p>
<p>https://developers.google.com/pagespeed/</p>
<p>If you have, you might notice that some of your changes take, and some don&#8217;t.  I almost went insane until I realized that this page was caching some results, regardless of refreshing or reloading the page.</p>
<p>Solution?  Download firebug plugin for Firefox, and then visit this page to download page speed plugin.</p>
<p><a href="http://code.google.com/speed/page-speed/download.html">http://code.google.com/speed/page-speed/download.html</a></p>
<p>After installing, you must restart Firefox to enable the plugin.  Once activated, you will notice a Firbug icon on the tool bar, mine happens to be to the right of the home button to the right of my search  bar.</p>
<p>Then, when you make changes to your site, <strong>RELOAD</strong> your page in your browser and then <strong>REFRESH ANALYSIS</strong> for the updated results.</p>
<p>Happy optimizing <img src='http://blog.m3server.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>M3Server.Com &#8211; <a title="WordPress Virtual Servers" href="http://www.m3server.com/wordpress-hosting">WordPress Virtual Servers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2012/02/google-page-speed-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>howto redirect source traffic htaccess</title>
		<link>http://blog.m3server.com/2012/01/howto-redirect-source-traffic-htaccess/</link>
		<comments>http://blog.m3server.com/2012/01/howto-redirect-source-traffic-htaccess/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 15:43:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=221</guid>
		<description><![CDATA[Need to redirect source traffic to another domain?  Well, if you can&#8217;t modify the link on the source traffic, you can control it with the power of htaccess. WARNING: Make a backup of your original .htaccess file as always.  Backups are GREAT practice to follow. If something goes wrong, please remove the lines from your [...]]]></description>
			<content:encoded><![CDATA[<p>Need to redirect source traffic to another domain?  Well, if you can&#8217;t modify the link on the source traffic, you can control it with the power of htaccess.</p>
<p><strong><span style="color: #ff0000;">WARNING:</span> Make a backup of your original .htaccess file as always.  Backups are GREAT practice to follow.</strong></p>
<p>If something goes wrong, please remove the lines from your .htaccess or restore your known working backup file.</p>
<p>Place the following at the top of your .htaccess file:</p>
<p>The domain names below are just examples, please use the real domains.  The &#8220;other-something&#8221; domain is the domain you want the traffic routed to.</p>
<p>#### START COPY BELOW THIS LINE #####</p>
<p>Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} ^http://(www|ads)\.source-traffic\.net<br />
RewriteRule .* http://www.other-something.com [R=301,L]</p>
<p>### END COPY ABOVE THIS LINE ###</p>
<p>Enjoy the traffic router!</p>
<p>M3Server.com &#8211; <a title="Virtual Dedicated Servers Hosting" href="http://www.m3server.com">Virtual Dedicated Servers Hosting</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2012/01/howto-redirect-source-traffic-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Security</title>
		<link>http://blog.m3server.com/2012/01/wordpress-security/</link>
		<comments>http://blog.m3server.com/2012/01/wordpress-security/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 17:34:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=216</guid>
		<description><![CDATA[Keep your WordPress sites secure and safe by following this simple advice: 1) Only use plugins that you need.  Each plugin is an added security risk. 2) Avoid using the user name, admin, on your administrator accounts.  Use a random name instead with at least one number in it. 3) Use strong passwords!!!  CatDog isn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Keep your WordPress sites secure and safe by following this simple advice:</p>
<p>1) Only use plugins that you need.  Each plugin is an added security risk.</p>
<p>2) Avoid using the user name, admin, on your administrator accounts.  Use a random name instead with at least one number in it.</p>
<p>3) Use strong passwords!!!  CatDog isn&#8217;t a strong password folks.</p>
<p>4) Keep your WordPress updated and your plugins as well.</p>
<p>Above all, MAKE BACKUPS!!!!</p>
<p>Safe surfing!</p>
<p>M3Server.com &#8211; <a title="Virtual Dedicated Servers Hosting" href="http://www.m3server.com/virtual-dedicated-servers">dedicated server hosting</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2012/01/wordpress-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed up your site with client side caching</title>
		<link>http://blog.m3server.com/2012/01/speed-up-your-site-with-client-side-caching/</link>
		<comments>http://blog.m3server.com/2012/01/speed-up-your-site-with-client-side-caching/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 03:06:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=211</guid>
		<description><![CDATA[WARNING:  Make a backup of your htaccess file first so you can revert to your working file in the event something goes wrong. Add the following text to your .htaccess file: # M3SERVER.COM PERFORMANCE SETTINGS # compress text, html, javascript, css, xml: AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType [...]]]></description>
			<content:encoded><![CDATA[<p>WARNING:  Make a backup of your htaccess file first so you can revert to your working file in the event something goes wrong.</p>
<p>Add the following text to your .htaccess file:</p>
<p># M3SERVER.COM PERFORMANCE SETTINGS<br />
# compress text, html, javascript, css, xml:<br />
AddOutputFilterByType DEFLATE text/plain<br />
AddOutputFilterByType DEFLATE text/html<br />
AddOutputFilterByType DEFLATE text/xml<br />
AddOutputFilterByType DEFLATE text/css<br />
AddOutputFilterByType DEFLATE application/xml<br />
AddOutputFilterByType DEFLATE application/xhtml+xml<br />
AddOutputFilterByType DEFLATE application/rss+xml<br />
AddOutputFilterByType DEFLATE application/javascript<br />
AddOutputFilterByType DEFLATE application/x-javascript</p>
<p>## EXPIRES CACHING ##<br />
&lt;IfModule mod_expires.c&gt;<br />
ExpiresActive On<br />
ExpiresByType image/jpg &#8220;access 1 year&#8221;<br />
ExpiresByType image/jpeg &#8220;access 1 year&#8221;<br />
ExpiresByType image/gif &#8220;access 1 year&#8221;<br />
ExpiresByType image/png &#8220;access 1 year&#8221;<br />
ExpiresByType text/css &#8220;access 1 month&#8221;<br />
ExpiresByType application/pdf &#8220;access 1 month&#8221;<br />
ExpiresByType text/x-javascript &#8220;access 1 month&#8221;<br />
ExpiresByType application/x-shockwave-flash &#8220;access 1 month&#8221;<br />
ExpiresByType image/x-icon &#8220;access 1 year&#8221;<br />
ExpiresDefault &#8220;access 2 days&#8221;<br />
&lt;/IfModule&gt;<br />
## EXPIRES CACHING ##</p>
<p>M3Server.com &#8211; <a title="WordPress Web Hosting" href="http://www.m3server.com/wordpress-hosting">WordPress Hosting Plans</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2012/01/speed-up-your-site-with-client-side-caching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook Express Email Setup</title>
		<link>http://blog.m3server.com/2012/01/outlook-express-email-setup/</link>
		<comments>http://blog.m3server.com/2012/01/outlook-express-email-setup/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 17:56:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=209</guid>
		<description><![CDATA[This is white paper should also work well for the standard Outlook or Microsoft mail setup as well.  Steps won&#8217;t be exact, but should get you going. Outlook Express Email setup - Internet Connection Wizard Open outlook, if you dont have anything setup the Internet Connection Wizard will automatically start.  if you do have an email [...]]]></description>
			<content:encoded><![CDATA[<p>This is white paper should also work well for the standard Outlook or Microsoft mail setup as well.  Steps won&#8217;t be exact, but should get you going.</p>
<p><strong>Outlook Express Email setup</strong></p>
<p>- Internet Connection Wizard</p>
<p>Open outlook, if you dont have anything setup the Internet Connection Wizard will automatically start.  if you do have an email account already setup, then you will need to create a new identity, click on file, click on identities, click on add new identity, that will open up a window to name this mail identity, once you do that connection wizard opens</p>
<p>- Your Name : When you send email, your name will appear in the From field of the outgoing message.  Type your name as you would like it to appear.</p>
<p>- Click Next</p>
<p>- E-Mail address : Your e-mail address is the address other people use to send e-mail messages to you.  Enter the email address you want configure this to send/receive email for.</p>
<p>- Click Next</p>
<p>- E-Mail Server Names : Select POP3 or IMAP for my incoming mail server is a</p>
<p>- Incoming mail server :  yourdomain.com</p>
<p>- Outgoing Mail server :  yourdomain.com</p>
<p>- Click Next</p>
<p>- Internet Mail Logon:  Account name : Enter your username for this email address<br />
Password:  Enter the password for this email address</p>
<p>- Do not check Log on using Secure Password Authentication (SPA)</p>
<p>- Click Next</p>
<p>- Click Finished</p>
<p>- Now lets manually set a couple settings</p>
<p>- Click on tools, then accounts, select the mail tab and then click on properties</p>
<p>- Go to the servers tab</p>
<p>- Look for Outgoing mail server and check the box for my server requires authentication</p>
<p>- Then click on settings button right after that</p>
<p>- Select log on using and then enter your username and password in the blanks.</p>
<p>- Do not check Log on using Secure Password Authentication (SPA)</p>
<p>- Click on OK button</p>
<p>- Now select the Advanced tab at the top</p>
<p>- Outgoing mail (SMTP) port number : 25 is default and will work for most but some ISPS are blocking this port, so use 587 if 25 will not work for you.</p>
<p>- Click APPLY</p>
<p>- Click OK</p>
<p>- Close out your mail program</p>
<p>- Open Outlook Express back up and you should be ready to send and receive email</p>
<p>Happy E-Mailing <img src='http://blog.m3server.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>M3Server &#8211; <a title="Virtual Dedicated Servers" href="http://www.m3server.com">Virtual Dedicated Servers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2012/01/outlook-express-email-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Server Load</title>
		<link>http://blog.m3server.com/2012/01/wordpress-server-load/</link>
		<comments>http://blog.m3server.com/2012/01/wordpress-server-load/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 17:15:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=206</guid>
		<description><![CDATA[WordPress Server Load hampering your visitors and causing slow page loads?  With M3Server.com&#8217;s fully managed WordPress virtual server, we take care of that problem for you.  Often times the WordPress Server Load is simply just server related.  Period. Properly tuning a server takes patience to provide you the best WordPress Hosting experience possible.  We analyze [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress Server Load hampering your visitors and causing slow page loads?  With M3Server.com&#8217;s fully managed <a title="WordPress Virtual Servers" href="http://www.m3server.com/virtual-dedicated-servers">WordPress virtual server</a>, we take care of that problem for you.  Often times the WordPress Server Load is simply just server related.  Period.</p>
<p>Properly tuning a server takes patience to provide you the best WordPress Hosting experience possible.  We analyze each service provided by the server and performance tune it to your site&#8217;s characteristics.   Our free tuning service includes benchmark tests of before, during, and after the tuning process is complete.  We can show you real results of these tests.</p>
<p>Once we have the server load reduced and your WordPress hosting has improved, we can then work with you to improve your site with use of plugins and other performance improvements.</p>
<p>To reduce your WordPress Server Load, get started today and visit M3Server.com&#8217;s <a title="WordPress Web Hosting" href="http://www.m3server.com/wordpress-hosting">WordPress Hosting</a> service!  Get your own WordPress virtual server and start serving your pages even faster.</p>
<p>M3Server.com &#8211; WordClass Web Hosting</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2012/01/wordpress-server-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin Malfunction</title>
		<link>http://blog.m3server.com/2012/01/wordpress-plugin-malfunction/</link>
		<comments>http://blog.m3server.com/2012/01/wordpress-plugin-malfunction/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 16:35:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=203</guid>
		<description><![CDATA[You added, upgraded, removed, activated or other wise modified a WordPress plugin and now you can&#8217;t reach your WordPress admin login page!  Or, even worse, your entire site has a blank page or other 500 error. Did you backup your database first before working on your site?   Its best to restore IF you have a [...]]]></description>
			<content:encoded><![CDATA[<p>You added, upgraded, removed, activated or other wise modified a WordPress plugin and now you can&#8217;t reach your WordPress admin login page!  Or, even worse, your entire site has a blank page or other 500 error.</p>
<p>Did you backup your database first before working on your site?   Its best to restore IF you have a CURRENT backup, but if not, you can try this fix action.</p>
<p>If you forget to deactivate plugins before a WordPress upgrade/update, your site could break or leave you with a blank page when viewing your WordPress admin login page.</p>
<p>The repair action is to go to the wp_option table in your WordPress database, and find the row with option_name &#8216;active_plugins&#8217;.</p>
<p>To get started, follow the general guide below:</p>
<p>Login via your Secure phpMyAdmin URL with the user name and password of your database.</p>
<p>Find your database name on the left hand side and click it.<br />
Now, find the table named: wp_option</p>
<p>Next, locate the row:<br />
active_plugins</p>
<p>Click on the &#8220;pencil&#8221; edit icon to edit this row.</p>
<p>The section of interest is the large white text box.  It generally has a few lines of code.</p>
<p>Copy this data and paste it in a plain text editor, just for save keeping.</p>
<p>Then delete the rows of code in this box and click save.</p>
<p>This should deactivate all plugins.  Retry your WordPress admin login now.</p>
<p>As always, we can&#8217;t state this strongly enough.  Before embarking on any WordPress management, updates, upgrades, plugin installs, etc, always, and we mean always backup/export your database.A</p>
<p>M3Server.com &#8211; <a title="WordPress Web Hosting" href="http://www.m3server.com/wordpress-hosting">WordPress Hosting</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2012/01/wordpress-plugin-malfunction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security tip for WordPress disable tilde</title>
		<link>http://blog.m3server.com/2012/01/security-tip-for-wordpress-disable-tilde/</link>
		<comments>http://blog.m3server.com/2012/01/security-tip-for-wordpress-disable-tilde/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 15:42:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=191</guid>
		<description><![CDATA[To prevent unauthorized scanning of backup files, scripts, etc.  Add this to your WordPress htaccess file: RewriteEngine On RewriteRule \.php~$ &#8211; [forbidden,last] The second line above should go right under the first line as shown. This will prevent index.php~ from displaying in URLs increasing security on your WordPress site. As always, make a local backup [...]]]></description>
			<content:encoded><![CDATA[<p>To prevent unauthorized scanning of backup files, scripts, etc.  Add this to your WordPress htaccess file:</p>
<p>RewriteEngine On<br />
RewriteRule \.php~$ &#8211; [forbidden,last]</p>
<p>The second line above should go right under the first line as shown.</p>
<p>This will prevent index.php~ from displaying in URLs increasing security on your WordPress site.</p>
<p>As always, make a local backup of your files before editing so that you can make easy corrections of things don&#8217;t work out as planned.</p>
<p>Need <a title="WordPress Web Hosting" href="http://www.m3server.com/wordpress-hosting" target="_blank">WordPress web hosting</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2012/01/security-tip-for-wordpress-disable-tilde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>change the default start page</title>
		<link>http://blog.m3server.com/2011/12/change-the-default-start-page/</link>
		<comments>http://blog.m3server.com/2011/12/change-the-default-start-page/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 21:37:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=189</guid>
		<description><![CDATA[By default on m3server.com servers, we have these start pages listed in order of precedence: DirectoryIndex index.html index.htm index.shtml index.cgi index.php Meaning, index.html will be called before index.php. If you have two pages with names listed above, the order of precedence will determine which the server automatically serves to the web user. The directory index [...]]]></description>
			<content:encoded><![CDATA[<p>By default on m3server.com servers, we have these start pages listed in order of precedence:</p>
<p><em><strong>DirectoryIndex index.html index.htm index.shtml index.cgi index.php</strong></em></p>
<p>Meaning, index.html will be called before index.php.</p>
<p>If you have two pages with names listed above, the order of precedence will determine which the server automatically serves to the web user.</p>
<p>The directory index page is what the server displays if the client doesn&#8217;t specify a page.  For example:</p>
<p>http://www.m3server.com/</p>
<p>Notice the index page wasn&#8217;t specified.</p>
<p>http://www.m3server.com/index.php</p>
<p>Notice the index page is specified.</p>
<p>If you wanted your directory index page to be a specific page for the time being, or permanently changed you do so via the power of your .htaccess file.</p>
<p>Enter this at the top of your .htaccess file:</p>
<p>DirectoryIndex index.html</p>
<p>The change is instant.  If results aren&#8217;t desirable, just revert your .htaccess file back to the original setting.</p>
<p>Say for example that your current directory index page is index.php and you wanted to divert people away from that page without changing that page&#8217;s content, like for constructing a new page or a seasonal message.  The DirectoryIndex command will be your method of routing visitors to the index.html page, or whatever page you note in the .htaccess command of DirectoryIndex.</p>
<p>Enjoy!</p>
<p><a title="WordPress Web Hosting" href="http://www.m3server.com/wordpress-hosting">M3server.com</a> &#8211; World Class WordPress Web Hosting</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2011/12/change-the-default-start-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>General Email Setup</title>
		<link>http://blog.m3server.com/2011/12/general-email-setup/</link>
		<comments>http://blog.m3server.com/2011/12/general-email-setup/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 16:33:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.m3server.com/?p=186</guid>
		<description><![CDATA[How to send / receive email using a mail client?  While all mail clients will have different setup screens, the options can be summed up using the settings below. Note:  Replace my_domain.com with your real domain name. Notice:  Don&#8217;t use smtp.mydomain.com or mail.domain.com, use only the domain.com portion. IMAP/POP3 &#8211; what is the difference?  IMAP [...]]]></description>
			<content:encoded><![CDATA[<p>How to send / receive email using a mail client?  While all mail clients will have different setup screens, the options can be summed up using the settings below.</p>
<p><strong>Note:  <span style="color: #ff0000;">Replace my_domain.com with your real domain name.</span></strong></p>
<p>Notice:  Don&#8217;t use smtp.mydomain.com or mail.domain.com, use only the domain.com portion.</p>
<p>IMAP/POP3 &#8211; what is the difference?  IMAP service holds all of your files/folders on the server and pushes them to the various clients you may use.  So, if you delete a message on your iPhone, the message will also be deleted from your desktop mail client as well.  POP3 downloads everything to your device.  If you use multiple devices you should definitely use IMAP.</p>
<p>Incoming mail server IMAP/POP3</p>
<p>my_domain.com</p>
<p>Do not select SSL/SECURE.  The user name is just your user name, not the email address.</p>
<p>Outgoing mail server SMTP</p>
<p>my_domain.com</p>
<p>Do not select SSL/SECURE but do enable &#8220;my server requires authentication&#8221;.</p>
<p>Use the same user name and password as you did for the IMAP/POP3 service.</p>
<p>Happy e-mailing,</p>
<p><a href="http://www.m3server.com">M3Server.com</a> &#8211; Word Class Hosting</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.m3server.com/2011/12/general-email-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

