<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>AwardSpace Blog &#187; FAQ</title>
	<atom:link href="http://blog.awardspace.com/category/faq/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.awardspace.com</link>
	<description>Web Hosting News, Web Hosting Tips, Web Hosting Tutorials and FAQ by AwardSpace.com</description>
	<lastBuildDate>Tue, 10 Nov 2009 11:56:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Example contact form (form-to-mail).</title>
		<link>http://blog.awardspace.com/example-contact-form-form-to-mail/</link>
		<comments>http://blog.awardspace.com/example-contact-form-form-to-mail/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 07:58:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=206</guid>
		<description><![CDATA[Our servers require SMTP authentication, which in plain English means you will have to use any of your e-mail accounts, created within the E-mail Manager -&#62; E-mail Accounts section from your control panel.
You can see the code of an example contact form below(contact.html):
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;
Contact form
&#60;/title&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;center&#62;
&#60;font size=&#8221;5&#8243;&#62;
&#60;b&#62;
Contact form
&#60;/b&#62;
&#60;br&#62;
&#60;br&#62;
&#60;/font&#62;
&#60;form method=&#8221;POST&#8221; action=&#8221;mailer.php&#8221;&#62;
Subject:
&#60;input type=&#8221;text&#8221; name=&#8221;subject&#8221; size=&#8221;20&#8243;&#62;
&#60;br&#62;
&#60;br&#62;
Name:
&#60;input type=&#8221;text&#8221; name=&#8221;name&#8221; size=&#8221;20&#8243;&#62;
&#60;br&#62;
&#60;br&#62;
E-mail:
&#60;input type=&#8221;text&#8221; [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fexample-contact-form-form-to-mail%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fexample-contact-form-form-to-mail%2F" height="61" width="51" /></a></div><p>Our servers require SMTP authentication, which in plain English means you will have to use any of your e-mail accounts, created within the E-mail Manager -&gt; E-mail Accounts section from your control panel.<br />
You can see the code of an example contact form below(contact.html):</p>
<blockquote><p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;<br />
Contact form<br />
&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;center&gt;<br />
&lt;font size=&#8221;5&#8243;&gt;<br />
&lt;b&gt;<br />
Contact form<br />
&lt;/b&gt;<br />
&lt;br&gt;<br />
&lt;br&gt;<br />
&lt;/font&gt;<br />
&lt;form method=&#8221;POST&#8221; action=&#8221;mailer.php&#8221;&gt;<br />
Subject:<br />
&lt;input type=&#8221;text&#8221; name=&#8221;subject&#8221; size=&#8221;20&#8243;&gt;<br />
&lt;br&gt;<br />
&lt;br&gt;<br />
Name:<br />
&lt;input type=&#8221;text&#8221; name=&#8221;name&#8221; size=&#8221;20&#8243;&gt;<br />
&lt;br&gt;<br />
&lt;br&gt;<br />
E-mail:<br />
&lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; size=&#8221;20&#8243;&gt;<br />
&lt;br&gt;<br />
&lt;br&gt;<br />
Message:&lt;br&gt;<br />
&lt;textarea rows=&#8221;9&#8243; name=&#8221;message&#8221; cols=&#8221;30&#8243;&gt;<br />
&lt;/textarea&gt;<br />
&lt;br&gt;<br />
&lt;br&gt;<br />
&lt;input type=&#8221;submit&#8221; value=&#8221;Send&#8221; name=&#8221;submit&#8221;&gt;<br />
&lt;/form&gt;<br />
&lt;/center&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></blockquote>
<p>To have the form working you will also have to create a file called mailer.php with the below code:</p>
<blockquote><p>&lt;?php<br />
if(isset($_POST['submit'])) {</p>
<p>$myemail = <a class="moz-txt-link-rfc2396E" href="mailto:youremail@yourdomain.com">&#8220;youremail@yourdomain.com&#8221;</a>;<br />
$subject = $_POST['subject'];<br />
$name = $_POST['name'];<br />
$email = $_POST['email'];<br />
$message = $_POST['message'];<br />
$headers = &#8220;From:Contact Form &lt;$myemail&gt;\r\n&#8221;;<br />
$headers .= &#8220;Reply-To: $name &lt;$email&gt;\r\n&#8221;;</p>
<p>echo &#8220;Your message has been sent successfully!&#8221;;<br />
mail($myemail, $subject, $message, $headers);</p>
<p>} else {</p>
<p>echo &#8220;An error occurred during the submission of your message&#8221;;</p>
<p>}<br />
?&gt;</p></blockquote>
<p>If you already have a non-working contact form try adding the following variables and check if it works:</p>
<blockquote><p>$mymail = <a class="moz-txt-link-rfc2396E" href="mailto:youremail@yourdomain.com">&#8220;youremail@yourdomain.com&#8221;</a>;<br />
$headers = &#8220;From:Contact Form &lt;$myemail&gt;\r\n&#8221;;<br />
$headers .= &#8220;Reply-To: $name &lt;$email&gt;\r\n&#8221;;<br />
mail($mymail, $subject, $message ,$headers);</p></blockquote>
<p><strong>NOTE</strong>: The Reply-To header could be set with different variable than $email, depending on the contact form itself.</p>
<p>If your contact form already has the $header or $headers variable you will have to add the code with the following change:</p>
<blockquote><p>$mymail = <a class="moz-txt-link-rfc2396E" href="mailto:youremail@account.com">&#8220;youremail@account.com&#8221;</a>;<br />
$headers .= &#8220;From:Contact Form &lt;$myemail&gt;\r\n&#8221;;<br />
$headers .= &#8220;Reply-To: $name &lt;$email&gt;\r\n&#8221;;<br />
mail($mymail, $subject, $message ,$headers);</p></blockquote>
<p><strong>NOTE</strong>: The Reply-To header could be set with different variable than $email, depending on the contact form itself.</p>
<p>If you wish the messages from the contact form to be received in e-mail box which is not on our servers just replace the $mymail in the mail() function with the e-mail where the e-mails should be sent to.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="Example contact form (form-to-mail)." url="http://blog.awardspace.com/example-contact-form-form-to-mail/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/example-contact-form-form-to-mail/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How can I access my Webmail?</title>
		<link>http://blog.awardspace.com/how-can-i-access-my-webmail/</link>
		<comments>http://blog.awardspace.com/how-can-i-access-my-webmail/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 12:54:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=184</guid>
		<description><![CDATA[Answer: You can access your webmail from the control panel, if you follow the instructions:
1. Login to your control panel.
2. Go to E-Mail Manager.
3. Click on Webmail.
You wil be forwarded to a login screen from where you can manage your emails via your web browser.
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fhow-can-i-access-my-webmail%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fhow-can-i-access-my-webmail%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong> You can access your webmail from the control panel, if you follow the instructions:</p>
<p>1. Login to your control panel.<br />
2. Go to <em>E-Mail Manager</em>.<br />
3. Click on <em>Webmail</em>.</p>
<p>You wil be forwarded to a login screen from where you can manage your emails via your web browser.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="How can I access my Webmail?" url="http://blog.awardspace.com/how-can-i-access-my-webmail/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/how-can-i-access-my-webmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I add an e-mail alias?</title>
		<link>http://blog.awardspace.com/how-can-i-add-an-e-mail-alias/</link>
		<comments>http://blog.awardspace.com/how-can-i-add-an-e-mail-alias/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:55:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[create email alias]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=181</guid>
		<description><![CDATA[Answer: To add an e-mail alias, you should follow the instructions below:
1. Login to your control panel.             2. Go to E-Mail Manager.
3. Click on E-mail Aliases.
You will be forwarded to a page where you will find a list of your current e-mail aliases.. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fhow-can-i-add-an-e-mail-alias%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fhow-can-i-add-an-e-mail-alias%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong> To add an e-mail alias, you should follow the instructions below:</p>
<p>1. Login to your control panel.             2. Go to <em>E-Mail Manager</em>.<br />
3. Click on <em>E-mail Aliases</em>.</p>
<p>You will be forwarded to a page where you will find a list of your current e-mail aliases.. To add the alias, you will have to complete the form.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="How can I add an e-mail alias?" url="http://blog.awardspace.com/how-can-i-add-an-e-mail-alias/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/how-can-i-add-an-e-mail-alias/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m having trouble setting up an email account in Thunderbird, what are the correct settings?</title>
		<link>http://blog.awardspace.com/im-having-trouble-setting-up-an-email-account-in-thunderbird-what-are-the-correct-settings/</link>
		<comments>http://blog.awardspace.com/im-having-trouble-setting-up-an-email-account-in-thunderbird-what-are-the-correct-settings/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:53:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[configure mailbox]]></category>
		<category><![CDATA[email wizard]]></category>
		<category><![CDATA[mail client]]></category>
		<category><![CDATA[Thunderbird]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=178</guid>
		<description><![CDATA[Answer: Delete the email account you have already set up, start again and follow these steps:

 Tools -&#62; Account Settings
 Add Account -&#62; New Account Setup -&#62; Choose Email account
 Identity:


 Your Name: Firstname Lastname



 Email address: name@domain.com



 Server Information:


 Choose IMAP



 Incoming Server: mail.yourdomain.com



 User Names:


 name@yourdomain.com



 Account Name:


 name@yourdomain.com



 Finish -&#62; OKThunderbird might [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fim-having-trouble-setting-up-an-email-account-in-thunderbird-what-are-the-correct-settings%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fim-having-trouble-setting-up-an-email-account-in-thunderbird-what-are-the-correct-settings%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong> Delete the email account you have already set up, start again and follow these steps:</p>
<ol>
<li> Tools -&gt; Account Settings</li>
<li> Add Account -&gt; New Account Setup -&gt; Choose Email account</li>
<li> Identity:
<ol></ol>
<ul>
<li> Your Name: Firstname Lastname</li>
</ul>
<ol></ol>
<ul>
<li> Email address: name@domain.com</li>
</ul>
<ol></ol>
</li>
<li> Server Information:
<ol></ol>
<ul>
<li> Choose IMAP</li>
</ul>
<ol></ol>
<ul>
<li> Incoming Server: mail.yourdomain.com</li>
</ul>
<ol></ol>
</li>
<li> User Names:
<ol></ol>
<ul>
<li> name@yourdomain.com</li>
</ul>
<ol></ol>
</li>
<li> Account Name:
<ol></ol>
<ul>
<li> name@yourdomain.com</li>
</ul>
<ol></ol>
</li>
<li> Finish -&gt; OKThunderbird might ask you for email account password, enter it.</li>
<li> Inside your Thunderbird right click on the email account -&gt; choose Properties</li>
<li> Dialog box will open, go to Server Settings -&gt; click on &#8216;Advanced&#8217; button</li>
<li> Second dialog box will open, in IMAP server directory write: INBOX, click Ok on the second dialog box</li>
<li> On the first dialog box on the left below find -&gt; Outgoing Server (SMTP), click on and choose &#8216;Add&#8217;</li>
<li> A dialog box will open with title &#8216;SMTP Server&#8217; enter the following settings:Settings:
<ol></ol>
<ul>
<li>Description: name@domain.com</li>
</ul>
<ol></ol>
<ul>
<li>Server Name: mail.domain.com</li>
</ul>
<ol></ol>
<ul>
<li>Port 25</li>
</ul>
<ol></ol>
<p>Security and Authentication:</p>
<ol></ol>
<ul>
<li>Check box &#8216;Use name and password&#8217; should be checked.</li>
</ul>
<ol></ol>
<ul>
<li>Username: name@yourdomain.com</li>
</ul>
<ol></ol>
</li>
</ol>
<p>Confirm all dialog boxes with OK, close Thunderbird and reopen it again. You may be asked for 	your password again, place the password and check the box to save it.</p>
<p>This is the whole process of setting up an email account with Thunderbird.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="I'm having trouble setting up an email account in Thunderbird, what are the correct settings?" url="http://blog.awardspace.com/im-having-trouble-setting-up-an-email-account-in-thunderbird-what-are-the-correct-settings/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/im-having-trouble-setting-up-an-email-account-in-thunderbird-what-are-the-correct-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set up email forwarding?</title>
		<link>http://blog.awardspace.com/how-to-set-up-email-forwarding/</link>
		<comments>http://blog.awardspace.com/how-to-set-up-email-forwarding/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:52:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[create filter]]></category>
		<category><![CDATA[forward emails]]></category>
		<category><![CDATA[mail filter]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=175</guid>
		<description><![CDATA[Answer: To set up forwarding for all emails coming to any@yourdomaindomain.com to be forwarded any@anydomain.com, do the following:

Go to your Control Panel -&#62; E-mail Manager section -&#62; E-mail Filters menu;
If you want all emails sent to any@yourdomaindomain.com to be forwarded to any@anydomain.com, these are the correct settings in the E-mail Filters menu:
E-mail: any@anydomain.com (choose from [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fhow-to-set-up-email-forwarding%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fhow-to-set-up-email-forwarding%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong> To set up forwarding for all emails coming to any@yourdomaindomain.com to be forwarded any@anydomain.com, do the following:</p>
<ol>
<li>Go to your Control Panel -&gt; E-mail Manager section -&gt; E-mail Filters menu;</li>
<li>If you want all emails sent to any@yourdomaindomain.com to be forwarded to any@anydomain.com, these are the correct settings in the E-mail Filters menu:
<p><strong>E-mail</strong>: any@anydomain.com (choose from the drop down menu)</p>
<p><strong>Rule description</strong>: any@anydomain.com type any explanation for this rule</p>
<p><strong>Filter priority</strong>: any not already taken from 1 to 500, start from 1</p>
<p><strong>Set filter criteria:</strong> &#8216;Addressed To&#8217; ,type any@anydomain.com</p>
<p><strong>Action to be taken</strong>: &#8216;Forward message to e-mail&#8217; any@anydomain.com</li>
</ol>
<p>If you want the emails sent to any@yourdomaindomain.com, to be forwarded to any@anydomain.com, and in the same time kept in any@anydomaindomain.com as well, you should specify all emails to be forwarded to any@anydomain.com as well as any@anydomaindomain.com, space delimited.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="How to set up email forwarding?" url="http://blog.awardspace.com/how-to-set-up-email-forwarding/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/how-to-set-up-email-forwarding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am unable to use PHP mail() function from my paid hosting account, why?</title>
		<link>http://blog.awardspace.com/i-am-unable-to-use-php-mail-function-from-my-paid-hosting-account-why/</link>
		<comments>http://blog.awardspace.com/i-am-unable-to-use-php-mail-function-from-my-paid-hosting-account-why/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:49:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[PHP mail function]]></category>
		<category><![CDATA[send mail example]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=173</guid>
		<description><![CDATA[Answer: Here is a script example you can test php mail function with:
&#60;?
$from = &#8220;From: You &#60;you@yourdomain.com&#62;&#8221;;
$to = &#8220;you@yourdomain.com&#8221;;
$subject = &#8220;Hi! &#8220;;
$body = &#8220;TEST&#8221;;
if(mail($to,$subject,$body,$from))
echo &#8220;MAIL &#8211; OK&#8221;;
else
echo &#8220;MAIL FAILED&#8221;;
?&#62;
This script is sending email (to you@yourdomain.com) and printing &#8220;MAIL &#8211; OK&#8221; on the page.
Please note that the &#8216;from&#8217; header should be an existing email account inside [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fi-am-unable-to-use-php-mail-function-from-my-paid-hosting-account-why%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fi-am-unable-to-use-php-mail-function-from-my-paid-hosting-account-why%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong> <span class="faq_answers">Here is a script example you can test php mail function with:</span></p>
<p>&lt;?<br />
$from = &#8220;From: You &lt;you@yourdomain.com&gt;&#8221;;<br />
$to = &#8220;you@yourdomain.com&#8221;;<br />
$subject = &#8220;Hi! &#8220;;<br />
$body = &#8220;TEST&#8221;;</p>
<p>if(mail($to,$subject,$body,$from))<br />
echo &#8220;MAIL &#8211; OK&#8221;;<br />
else<br />
echo &#8220;MAIL FAILED&#8221;;<br />
?&gt;</p>
<p>This script is sending email (to you@yourdomain.com) and printing &#8220;MAIL &#8211; OK&#8221; on the page.</p>
<p>Please note that the &#8216;from&#8217; header should be an existing email account inside your Email Manager of your hosting Control Panel.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="I am unable to use PHP mail() function from my paid hosting account, why?" url="http://blog.awardspace.com/i-am-unable-to-use-php-mail-function-from-my-paid-hosting-account-why/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/i-am-unable-to-use-php-mail-function-from-my-paid-hosting-account-why/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I can&#8217;t send e-mails. It seems that the POP3/IMAP connection is not working. Please help?</title>
		<link>http://blog.awardspace.com/i-cant-send-e-mails-it-seems-that-the-pop3-imap-connection-is-not-working-please-help/</link>
		<comments>http://blog.awardspace.com/i-cant-send-e-mails-it-seems-that-the-pop3-imap-connection-is-not-working-please-help/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:48:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[test POP3/IMAP connection]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=171</guid>
		<description><![CDATA[Answer: In order to check, if your email client does connect to POP3, please observe the following steps:

Open command prompt from -&#62; Start button -&#62; Run -&#62; type cmd, a black dialog box will open the so called Command Prompt
Type in -&#62; telnet mail.yourdomain.com 110 -&#62; press &#8216;Enter&#8217;

You should receive &#8211; OK status, this means [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fi-cant-send-e-mails-it-seems-that-the-pop3-imap-connection-is-not-working-please-help%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fi-cant-send-e-mails-it-seems-that-the-pop3-imap-connection-is-not-working-please-help%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong> In order to check, if your email client does connect to POP3, please observe the following steps:</p>
<ol>
<li>Open command prompt from -&gt; Start button -&gt; Run -&gt; type cmd, a black dialog box will open the so called Command Prompt</li>
<li>Type in -&gt; telnet mail.yourdomain.com 110 -&gt; press &#8216;Enter&#8217;</li>
</ol>
<p>You should receive &#8211; OK status, this means POP3 is working and connection is ok to the mail server.</p>
<p>In order to check if your email client does connect to IMAP, do the following:</p>
<ol>
<li>Open command prompt from -&gt; Start button -&gt; Run -&gt; type cmd, a black dialog box will open, this is the so called command prompt</li>
<li>Type in -&gt; telnet mail.yourdomain.com 143 -&gt; press &#8216;Enter&#8217;</li>
</ol>
<p>You should receive &#8211; OK status, this means IMAP is working and connection is ok to the mail server.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="I can't send e-mails. It seems that the POP3/IMAP connection is not working. Please help?" url="http://blog.awardspace.com/i-cant-send-e-mails-it-seems-that-the-pop3-imap-connection-is-not-working-please-help/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/i-cant-send-e-mails-it-seems-that-the-pop3-imap-connection-is-not-working-please-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I can&#8217;t send e-mail. The error I receive is &#8216;Outlook is unable to connect to your outgoing (SMTP) e-mail server. If you continue receiving this message, contact your server administrator or Internet service provider (ISP).&#8217;</title>
		<link>http://blog.awardspace.com/i-cant-send-e-mail-the-error-i-receive-is-outlook-is-unable-to-connect-to-your-outgoing-smtp-e-mail-server-if-you-continue-receiving-this-message-contact-your-server-administrator-or-internet/</link>
		<comments>http://blog.awardspace.com/i-cant-send-e-mail-the-error-i-receive-is-outlook-is-unable-to-connect-to-your-outgoing-smtp-e-mail-server-if-you-continue-receiving-this-message-contact-your-server-administrator-or-internet/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:46:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[mail ports]]></category>
		<category><![CDATA[send email]]></category>
		<category><![CDATA[telnet test]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=169</guid>
		<description><![CDATA[Answer: First make sure you have checked in the account properties of the Outlook Express / MS Outlook the option &#8216;My server requires authentication&#8217;. Please note that if you are using different e-mail client the settings might be different.
If not, proceed to the following test. Open Command Prompt and type: telnet mail.yourdomain.com 25, press &#8216;Enter&#8217;
If [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fi-cant-send-e-mail-the-error-i-receive-is-outlook-is-unable-to-connect-to-your-outgoing-smtp-e-mail-server-if-you-continue-receiving-this-message-contact-your-server-administrator-or-internet%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fi-cant-send-e-mail-the-error-i-receive-is-outlook-is-unable-to-connect-to-your-outgoing-smtp-e-mail-server-if-you-continue-receiving-this-message-contact-your-server-administrator-or-internet%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong> First make sure you have checked in the account properties of the Outlook Express / MS Outlook the option &#8216;My server requires authentication&#8217;. Please note that if you are using different e-mail client the settings might be different.</p>
<p>If not, proceed to the following test. Open Command Prompt and type: telnet mail.yourdomain.com 25, press &#8216;Enter&#8217;</p>
<p>If you do not get response &#8216;220 mail.yourdomain.com mail server&#8217; this means your PC (Firewall or Antivirus Program) blocks port 25 and thus filters your outgoing emails.</p>
<p>Solution: Disable the option of your/your network firewall to block port 25, contact system administrator, ISP or Antivirus Program producer for help on how to disable port 25 filtering. Alternatively you may use port 587.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="I can't send e-mail. The error I receive is 'Outlook is unable to connect to your outgoing (SMTP) e-mail server. If you continue receiving this message, contact your server administrator or Internet service provider (ISP).'" url="http://blog.awardspace.com/i-cant-send-e-mail-the-error-i-receive-is-outlook-is-unable-to-connect-to-your-outgoing-smtp-e-mail-server-if-you-continue-receiving-this-message-contact-your-server-administrator-or-internet/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/i-cant-send-e-mail-the-error-i-receive-is-outlook-is-unable-to-connect-to-your-outgoing-smtp-e-mail-server-if-you-continue-receiving-this-message-contact-your-server-administrator-or-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are my POP3/IMAP settings to configure it with email client?</title>
		<link>http://blog.awardspace.com/what-are-my-pop3-imap-settings-to-configure-it-with-email-client/</link>
		<comments>http://blog.awardspace.com/what-are-my-pop3-imap-settings-to-configure-it-with-email-client/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:44:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[mail client]]></category>
		<category><![CDATA[mail server]]></category>
		<category><![CDATA[mail settings]]></category>
		<category><![CDATA[POP3]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=167</guid>
		<description><![CDATA[Answer:
The mail settings are as follows:
• Username: Your e-mail address;
• Password: Your e-mail password;
• POP3 Server: yoursubdomain.yourdomainname.com or mail.yourdomainname.com
• SMTP Server:  if you have paid account use mail.yourdomainname.com;
 SMTP (Simple Mail Transfer Protocol) is disabled for all free accounts due to spam concerns.
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fwhat-are-my-pop3-imap-settings-to-configure-it-with-email-client%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fwhat-are-my-pop3-imap-settings-to-configure-it-with-email-client%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong></p>
<p><span class="faq_answers">The mail settings are as follows:<br />
• <span style="text-decoration: underline;">Username</span>: Your e-mail address;<br />
• <span style="text-decoration: underline;">Password</span>: Your e-mail password;<br />
• <span style="text-decoration: underline;">POP3 Server</span>: yoursubdomain.yourdomainname.com or mail.yourdomainname.com<br />
• <span style="text-decoration: underline;">SMTP Server</span>: <!-- if you have free account use the SMTP server of your local ISP;--> if you have paid account use mail.yourdomainname.com;</p>
<p><strong> SMTP (Simple Mail Transfer Protocol) is disabled for all free accounts due to spam concerns.</strong></span></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="What are my POP3/IMAP settings to configure it with email client?" url="http://blog.awardspace.com/what-are-my-pop3-imap-settings-to-configure-it-with-email-client/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/what-are-my-pop3-imap-settings-to-configure-it-with-email-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I can&#8217;t send e-mail. All outgoing e-mails are being rejected. Why?</title>
		<link>http://blog.awardspace.com/i-cant-send-e-mail-all-outgoing-e-mails-are-being-rejected-why/</link>
		<comments>http://blog.awardspace.com/i-cant-send-e-mail-all-outgoing-e-mails-are-being-rejected-why/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 11:43:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[send emails]]></category>
		<category><![CDATA[SMTP]]></category>

		<guid isPermaLink="false">http://blog.awardspace.com/?p=165</guid>
		<description><![CDATA[Answer: SMTP is disabled for the free accounts due to spam concerns.
If you have a paid account, please make sure in the account properties of the Outlook Express / MS Outlook you have checked the box &#8216;My server requires authentication&#8217;. Please note that if you are using different e-mail client the settings might be different [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.awardspace.com%2Fi-cant-send-e-mail-all-outgoing-e-mails-are-being-rejected-why%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.awardspace.com%2Fi-cant-send-e-mail-all-outgoing-e-mails-are-being-rejected-why%2F" height="61" width="51" /></a></div><p><strong>Answer:</strong> <span class="faq_answers"><strong>SMTP is disabled for the free accounts due to spam concerns.</strong></p>
<p>If you have a paid account, please make sure in the account properties of the Outlook Express / MS Outlook you have checked the box &#8216;My server requires authentication&#8217;. Please note that if you are using different e-mail client the settings might be different ( please refer to Question 9 further below ).</span></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="I can't send e-mail. All outgoing e-mails are being rejected. Why?" url="http://blog.awardspace.com/i-cant-send-e-mail-all-outgoing-e-mails-are-being-rejected-why/"></script>]]></content:encoded>
			<wfw:commentRss>http://blog.awardspace.com/i-cant-send-e-mail-all-outgoing-e-mails-are-being-rejected-why/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
