<?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>SupportSages &#187; Webmail</title>
	<atom:link href="http://www.supportsages.com/blog/category/webmail/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.supportsages.com/blog</link>
	<description>Technical Support and Server Management : Musings in the fox hole.</description>
	<lastBuildDate>Thu, 02 Sep 2010 18:51:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Prevent your mail/IP from getting marked as SPAM/Blacklisted, A few TIPS!</title>
		<link>http://www.supportsages.com/blog/2010/07/prevent-your-mailip-from-getting-marked-as-spamblacklisted-a-few-tips/</link>
		<comments>http://www.supportsages.com/blog/2010/07/prevent-your-mailip-from-getting-marked-as-spamblacklisted-a-few-tips/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 02:47:40 +0000</pubDate>
		<dc:creator>Fabian</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Webmail]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[DKIM]]></category>
		<category><![CDATA[dkim cpanel]]></category>
		<category><![CDATA[DomainKeys]]></category>
		<category><![CDATA[exim]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[SenderID]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[SPF]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=1031</guid>
		<description><![CDATA["<strong>SPAM</strong>"! A word familiar to all Netizens.

Emails plays a major role in today's business, one must be keen to preserve the authenticity of mails they sent to the users and fail to do so may result in getting your mail server IP blacklisted and mails ends-up in users junk folder and they die!

This post is not a perfect guide to prevent you from getting blacklisted by the spamcops, but a few tips that could save your "Time" and "Reputation".

1) All email is filtered against published blacklists of spam servers. Check whether your mailserver IP is already blacklisted : http://www.mxtoolbox.com/. If ...]]></description>
			<content:encoded><![CDATA[<p>&#8220;<strong>SPAM</strong>&#8220;! A word familiar to all Netizens.</p>
<p>Emails plays a major role in today&#8217;s business, one must be keen to preserve the authenticity of mails they sent to the users and fail to do so may result in getting your mail server IP blacklisted and mails ends-up in users junk folder and they die!</p>
<p>This post is not a perfect guide to prevent you from getting blacklisted by the spamcops, but a few tips that could save your &#8220;Time&#8221; and &#8220;Reputation&#8221;.</p>
<p>1) All email is filtered against published blacklists of spam servers. Check whether your mailserver IP is already blacklisted : http://www.mxtoolbox.com/. If listed, take necessary actions to remove it. You can temporarily switch the mail server IP to get the mails moving until your regular IP is released.</p>
<p>2) All mails will be filtered based on certain rules. It looks for senders email address, mail subject line and words on the message content. Avoid using blank subject line and using common spammers words like &#8220;offer, discount, sale, free etc&#8230; There are a lot more..</p>
<p>3) Maintain a regular time intervals while sending mails to a particular sender. This could be setup on exim configuration file. (Needs admin privileges)</p>
<p>4) <strong>Enable SPF</strong>:<br />
Sender Policy Framework (SPF), is an e-mail validation system designed to prevent e-mail spam by addressing a common vulnerability, source address spoofing. SPF allows administrators to specify which hosts are allowed to send e-mail from a given domain by creating a specific DNS SPF record in the public DNS for that domain. Mail exchangers then use the DNS to check that mail from a given domain is being sent by a host sanctioned by that domain&#8217;s administrators.</p>
<p>If SPF record is enabled for a domain, spammers and phishers are less likely to forge e-mails pretending to be from that domain. Spam filters now check for SPF records and hence eliminate the chance of forged mails, spams. Hence an SPF protected domain is less attractive to spammers and phishers and is less likely to be blacklisted by spam filters and ligitimate mails will go through.</p>
<p>SPF keeps the detail of the machine which is only authorized to send mails for that particular domain. This is done by adding additional a TXT record to their existing DNS records. Mail receivers that checks for SPF records check the domain DNS and finds whether the server is allowed to send mails for that domain.</p>
<p><span id="more-1031"></span></p>
<p>The key issue in SPF is the specification for the new DNS information that domains set and receivers use. Eg is :</p>
<p>example.com. IN SPF &#8220;v=spf1 a mx -all&#8221;</p>
<p>&#8220;v=&#8221; defines the version of SPF used. &#8220;v=&#8221; defines the version of SPF used. The following words provide mechanisms to use to determine if a domain is eligible to send mail. The &#8220;a&#8221; and &#8220;mx&#8221; specify the systems permitted to send messages for the given domain. The &#8220;-all&#8221; at the end specifies that, if the previous mechanisms did not match, the message should be rejected.</p>
<p>On a cPanel server, one can easily enable SPF records.</p>
<p>Login to cPanel account for that particular domain ==&gt; Email Authentication ==&gt; Scroll down to SPF section ==&gt; and Click on Enable.</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/07/spf_disabled.jpg" class="thickbox no_icon" rel="gallery-1031" title="spf_disabled"><img class="aligncenter size-medium wp-image-1033" title="spf_disabled" src="http://www.supportsages.com/blog/wp-content/uploads/2010/07/spf_disabled-260x300.jpg" alt="" width="260" height="300" /></a></p>
<p>Enable SPF :</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/07/spf_enabled.jpg" class="thickbox no_icon" rel="gallery-1031" title="spf_enabled"><img class="aligncenter size-medium wp-image-1034" title="spf_enabled" src="http://www.supportsages.com/blog/wp-content/uploads/2010/07/spf_enabled-300x90.jpg" alt="" width="300" height="90" /></a></p>
<p>SPF record on Domain DNS.</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/07/spf_dns.jpg" class="thickbox no_icon" rel="gallery-1031" title="spf_dns"><img class="aligncenter size-medium wp-image-1035" title="spf_dns" src="http://www.supportsages.com/blog/wp-content/uploads/2010/07/spf_dns-300x12.jpg" alt="" width="300" height="12" /></a></p>
<p>5) <strong>Enable SenderID:</strong></p>
<p>SenderID is also an anti-spoofing method to save emails from Junk. SenderID is heavily based on SPF with a few additions. Like in SPF, DNS entries are used on the domain DNS to ensure the authenticity of emal. But they differ on what rules they apply to what fields contained in the message header.</p>
<p>How SenderID works:</p>
<ul>
<li>Sender sends an e-mail to Receiver.</li>
<li>Receiver’s inbound e-mail server receives e-mail and calls its Sender ID Framework.</li>
<li>The Sender ID Framework looks up the SPF record of the domain that Sender is using for sending the mail.</li>
<li>The receiving Mail Transfer Agent (MTA) determines if the outbound Mail Server IP address matches IP addresses that are authorized to send mail for the user</li>
</ul>
<p>DNS entry for SenderID enabled domain looks like,</p>
<p style="text-align: center;"><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/07/senderid.jpg" class="thickbox no_icon" rel="gallery-1031" title="senderid"><img class="aligncenter size-full wp-image-1090" title="senderid" src="http://www.supportsages.com/blog/wp-content/uploads/2010/07/senderid.jpg" alt="" width="500" height="18" /></a></p>
<p>You can Generate SenderID from here : <a  href="http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/" target="_blank">http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/</a></p>
<p>6) <strong>Enable Domain Keys:</strong></p>
<p>DomainKeys is the branded name created by Yahoo. It has been introduced by Yahoo to fight against spams. DomainKeys is a PGP-like (Pretty Good Privacy) protocol for validating and authenticating an email. This system includes the creation of a public and private key. You keep your private key private and give your public key to your trusties. We encrypt data with our private key and users can decrypt messages with our public key.  This prevents others from seeing our data. Domain Keys takes this idea one step further. Instead of encrypting the email, it encrypts the email headers and creates a hash value from that encryption. The hash value is send/placed in the email header. When a site receives an email, it locates the public key which is located in the DNS server for the user listed in the From: line of the email and encrypts the email once again to compare the hash value.  If the hash values match after the second encryption test, the email passes validation.</p>
<p>DomainKeys is an system that allows for incoming mail to be checked against the server it was sent from to verify that the mail has not been modified and thereby ensures that messages are actually coming from the listed sender and allows abusive messages to be tracked with more ease.</p>
<p>Yahoo check for domankeys  on a domain if they are requested to whitelist the IP. Below are the steps to enable DomanKeys on a cPanel server.</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/07/spfndkenabled.jpg" class="thickbox no_icon" rel="gallery-1031" title="spfndkenabled"><img class="aligncenter size-medium wp-image-1036" title="spfndkenabled" src="http://www.supportsages.com/blog/wp-content/uploads/2010/07/spfndkenabled-300x113.jpg" alt="" width="300" height="113" /></a></p>
<p>DNS entries for DomainKeys and SPF</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2010/07/domain_keysnspf.jpg" class="thickbox no_icon" rel="gallery-1031" title="domain_keysnspf"><img class="aligncenter size-large wp-image-1039" title="domain_keysnspf" src="http://www.supportsages.com/blog/wp-content/uploads/2010/07/domain_keysnspf-1024x85.jpg" alt="" width="491" height="41" /></a></p>
<p>Once DomainKeys are enabled you can check whether it is setup correctly by sending a test mail addresses set up to  dk@dk.crynwr.com</p>
<p>7) <strong>Enable DKIM</strong> :</p>
<p>DKIM is the result of combining Yahoo’s DomainKeys technology with Identified Internet Mail which was developed at Cisco which is another methodology of PGP-like technique.<br />
DomainKeys and DKIM sounds similar but there are different. DKIM was created to provide a more robust solution that would survive more types of modification to which messages are frequently subjected. DomainKeys Identified Mail (DKIM) lets an organization take responsibility for a message while it is in transit.  The organization is a handler of the message, either as its originator or as an intermediary. Their reputation is the basis for evaluating whether to trust the message for delivery. Technically DKIM provides a method for validating a domain name identity that is associated with a message through cryptographic authentication.</p>
<p>DKIM is not available as a ready-made option in cPanel server till now. If you are running an VPS and know basic administration, you can get it enabled. Login to the server via SSH and check if if exim is compiled with DKIM support enabled.</p>
<pre class="brush: bash;">﻿root@server # /usr/sbin/exim -dd 2&gt;&amp;1 | grep Experimental_DKIM

Support for: crypteq iconv() IPv6 PAM Perl OpenSSL Content_Scanning Old_Demime Experimental_SPF Experimental_SRS
Experimental_DomainKeys Experimental_DKIM</pre>
<p>Generate the SSL keys</p>
<pre class="brush: bash;">cd /usr/local/cpanel/etc/exim</pre>
<pre class="brush: bash;">openssl genrsa -out dkim.key 1024</pre>
<pre class="brush: bash;">openssl rsa -in dkim.key -out dkim.public -pubout -outform PEM</pre>
<p>You will find two keys, dkim.key &amp; dkim.public</p>
<p>Open dkim.public and copy the contents excluding the –Begin– and –End– section. This is your DKIM key.  Now open exim configuration file and append the below entries under the section ‘remote_smtp’</p>
<p>Sample file:<br />
vi /etc/exim.conf</p>
<pre class="brush: plain;">remote_smtp
driver = smtp
dkim_domain=your_domain_name.com
dkim_selector=mail
dkim_private_key=/usr/local/cpanel/etc/exim/dkim.key #path to the dkim.key key.
interface = ${if exists {/etc/mailips}{${lookup{$sender_address_domain}lsearch*{/etc/mailips}{$value}{}}}{}}
helo_data = ${if exists {/etc/mailhelo}{${lookup{$sender_address_domain}lsearch*{/etc/mailhelo}{$value}{$primary_hostname}}}
{$primary_hostname}}</pre>
<p>Now on WHM, open DNS editor for the particular domain and add the TXT entry with DKIM key like below.</p>
<pre class="brush: plain;">mail._domainkey.example.com. IN TXT &quot;v=DKIM1;g=*;k=rsa; p=GIGmGA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDv4PSEG9PcxlI2tRojAUQ9hpRQ0Zj/XG4SK08/DrhG/CaspJAKZm9rZDAw18TrmuXeRgsGWAdS2vJ4Oa/kXqX0NG2eBJcGasu4GeNXANGXvC1uGz+8GC6rEPlE/Ucau4tGAHOZL0HJ9IDd/PIxoTkeTG3GjGeqvKBLbdvVIDXbcQIDAQAB&quot;</pre>
<p>Here p=the_key_you_have_copied_from_dkim.public</p>
<p>Restart exim and named services.</p>
<pre class="brush: bash;">/scripts/restartsrv exim</pre>
<pre class="brush: bash;">/scripts/restartsrv named</pre>
<p>To check whether DKIM is setup properly, send a mail to dkimtest@atmail.org , if setup properly, you will get a reply like below ,else a failure message.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Subject:    AutoReply from dkimtest@atmail.org<br />
From:    spftest@example.com<br />
Date:    Fri, Jul 9, 2010 10:27 pm<br />
To:    spftest@example.com<br />
*** DKIM TEST SUCCESSFUL ***<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>8 ) <strong>Join JMRP : </strong></p>
<p>JMRP/Junk Mail Report Program is a free service to provide reports on junk e-mail issues reported by  Windows Live Hotmail users. You can use this free service to which is developed commercial mailers and e-mail administrators to identify/fix issues in sending mails to hotmails ID&#8217;s. JMRP returns the full message with headers of any e-mail marked as “junk” or “phishing” by a recipient.  Provides senders an opportunity to clean their e-mail lists and improve the quality of their content and helps identify potential problems with your marketing practices and content and also improves sender reputation by removing unwanted subscribers from lists.</p>
<p>You can join LMRP from here : <a  href="https://support.msn.com/default.aspx?st=1&#038;website=msn&#038;tenant=oss&#038;brand=msn&#038;as=1&#038;timestmp=634147865953276556&#038;acty=ProductList&#038;ctl=oss%2fcontent%2fmsn_support_home&#038;wf=OSS&#038;trl=OSS~ProductList&#038;c=oss_msn&#038;ln=en-us&#038;productKey=edfsjmrpp&#038;sub=free" target="_blank">http://bit.ly/JMRP</a></p>
<p>N:B :- Mail server mentioned here is cPanel Exim, you may replace this with any other mail server.</p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=Prevent+your+mail%2FIP+from+getting+marked+as+SPAM%2FBlacklisted%2C+A+few+TIPS%21+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F1031" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Prevent+your+mail%2FIP+from+getting+marked+as+SPAM%2FBlacklisted%2C+A+few+TIPS%21+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F1031" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2010/07/prevent-your-mailip-from-getting-marked-as-spamblacklisted-a-few-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cPanel or Lxadmin &#8211; Roundcube issues &#8211;  SERVICE CURRENTLY NOT AVAILABLE!  Error No. [0x01F4]</title>
		<link>http://www.supportsages.com/blog/2009/06/cpanel-or-lxadmin-roundcube-issues-service-currently-not-available-error-no-0x01f4/</link>
		<comments>http://www.supportsages.com/blog/2009/06/cpanel-or-lxadmin-roundcube-issues-service-currently-not-available-error-no-0x01f4/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 12:21:55 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Webmail]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[lxadmin]]></category>
		<category><![CDATA[Roundcube]]></category>
		<category><![CDATA[Service Not available]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=419</guid>
		<description><![CDATA[<blockquote>SERVICE CURRENTLY NOT AVAILABLE!</blockquote>
<blockquote><strong> Error No. [0x01F4]</strong></blockquote>

That is what you will see on logging to the Roundcube. How to fix it ?

on cPanel, just update roundcube :)

<code> /usr/local/cpanel/bin/update-roundcube --force</code>

On Lxadmin, just re-install

<code>rm /var/cache/lxadmin/lxwebmail*
lphp.exe ../bin/misc/installRoundCube.php
/script/upcp</code>
]]></description>
			<content:encoded><![CDATA[<blockquote><p>SERVICE CURRENTLY NOT AVAILABLE!</p></blockquote>
<blockquote><p><strong> Error No. [0x01F4]</strong></p></blockquote>
<p>That is what you will see on logging to the Roundcube. How to fix it ?</p>
<p>on cPanel, just update roundcube <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><code> /usr/local/cpanel/bin/update-roundcube --force</code></p>
<p>On Lxadmin, just re-install</p>
<p><code>rm /var/cache/lxadmin/lxwebmail*<br />
lphp.exe ../bin/misc/installRoundCube.php<br />
/script/upcp</code></p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=cPanel+or+Lxadmin+-+Roundcube+issues+-++SERVICE+CURRENTLY+NOT+AVAILABLE%21++Error+No.+%5B0x01F4%5D+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F419" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=cPanel+or+Lxadmin+-+Roundcube+issues+-++SERVICE+CURRENTLY+NOT+AVAILABLE%21++Error+No.+%5B0x01F4%5D+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F419" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/06/cpanel-or-lxadmin-roundcube-issues-service-currently-not-available-error-no-0x01f4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horde errors &#8211; Fatal error: Cannot use string offset as an array in /usr/local/cpanel/base/horde/lib/Horde/Block/Layout/Manager.php on line 389</title>
		<link>http://www.supportsages.com/blog/2009/04/horde-errors-fatal-error-cannot-use-string-offset-as-an-array-in-usrlocalcpanelbasehordelibhordeblocklayoutmanagerphp-on-line-389/</link>
		<comments>http://www.supportsages.com/blog/2009/04/horde-errors-fatal-error-cannot-use-string-offset-as-an-array-in-usrlocalcpanelbasehordelibhordeblocklayoutmanagerphp-on-line-389/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 07:35:08 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Webmail]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[horde]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=33</guid>
		<description><![CDATA[A bug reported in Horde http://bugs.horde.org/ticket/?id=4070 decided to hit one of our customer's client accounts. Customer had old cPanel version and don't want to upgrade due to internal reasons. Client said, he was exploring the Horde's vast options (Horde is a web Outlook - can't complain :D) and while messing up with the Layout options in Horde he hit the bug,
<blockquote>Fatal error: Cannot use string offset as an array in /usr/local/cpanel/base/horde/lib/Horde/Block/Layout/Manager.php on line 389</blockquote>

Not sure what caused the issue and it is not happening with IE, and only in FF. However a simple layout reset fixed the issue. Good Luck. ...]]></description>
			<content:encoded><![CDATA[<p>A bug reported in Horde http://bugs.horde.org/ticket/?id=4070 decided to hit one of our customer&#8217;s client accounts. Customer had old cPanel version and don&#8217;t want to upgrade due to internal reasons. Client said, he was exploring the Horde&#8217;s vast options (Horde is a web Outlook &#8211; can&#8217;t complain <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) and while messing up with the Layout options in Horde he hit the bug,</p>
<blockquote><p>Fatal error: Cannot use string offset as an array in /usr/local/cpanel/base/horde/lib/Horde/Block/Layout/Manager.php on line 389</p></blockquote>
<p>Not sure what caused the issue and it is not happening with IE, and only in FF. However a simple layout reset fixed the issue. Good Luck. Still, we need to find the real cause.</p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=Horde+errors+-+Fatal+error%3A+Cannot+use+string+offset+as+an+array+in+%2Fusr%2Flocal%2Fcpanel%2Fbase%2Fhorde%2Flib%2FHorde%2FBlock%2FLayout%2FManager.php+on+line+389+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F33" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Horde+errors+-+Fatal+error%3A+Cannot+use+string+offset+as+an+array+in+%2Fusr%2Flocal%2Fcpanel%2Fbase%2Fhorde%2Flib%2FHorde%2FBlock%2FLayout%2FManager.php+on+line+389+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F33" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/04/horde-errors-fatal-error-cannot-use-string-offset-as-an-array-in-usrlocalcpanelbasehordelibhordeblocklayoutmanagerphp-on-line-389/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When trying to log in to Plesk horde, the login page reloads and does not log in into webmail.</title>
		<link>http://www.supportsages.com/blog/2009/04/when-trying-to-log-in-to-plesk-horde-the-login-page-reloads-and-does-not-log-in-into-webmail/</link>
		<comments>http://www.supportsages.com/blog/2009/04/when-trying-to-log-in-to-plesk-horde-the-login-page-reloads-and-does-not-log-in-into-webmail/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 15:58:20 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Webmail]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=26</guid>
		<description><![CDATA[Operating System was Linux

No one was able to login to Plesk's default webmail, horde. Enabled error reporting in php.ini and got the error message as below in the "<strong>/etc/httpd/logs/error_log</strong>" and/or "<strong>/var/log/psa-horde/psa-horde.log</strong>"
<blockquote>PHP Warning:  Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/usr/local/psa/admin/sessions) in Unknown on line 0, referer: http://webmail.supportsages.com/test.php?mode=unregister</blockquote>
Here the solution was to edit the php.ini to use /tmp as the  session.save_path or even "/var/lib/php/session"

Other solution, for similar issue (not this exact error though) is to set,

session.auto_start = 0 in php.ini
Making sure that localhost entry is in /etc/hosts and resolves. ...]]></description>
			<content:encoded><![CDATA[<p>Operating System was Linux</p>
<p>No one was able to login to Plesk&#8217;s default webmail, horde. Enabled error reporting in php.ini and got the error message as below in the &#8220;<strong>/etc/httpd/logs/error_log</strong>&#8221; and/or &#8220;<strong>/var/log/psa-horde/psa-horde.log</strong>&#8221;</p>
<blockquote><p>PHP Warning:  Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/usr/local/psa/admin/sessions) in Unknown on line 0, referer: http://webmail.supportsages.com/test.php?mode=unregister</p></blockquote>
<p>Here the solution was to edit the php.ini to use /tmp as the  session.save_path or even &#8220;/var/lib/php/session&#8221;</p>
<p>Other solution, for similar issue (not this exact error though) is to set,</p>
<p>session.auto_start = 0 in php.ini<br />
Making sure that localhost entry is in /etc/hosts and resolves. For that do a <strong>telnet localhost 143 </strong> and if you get &#8220;Connected to&#8221; message, its not that issue <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />  check <strong>/etc/hosts</strong> file. It must have permissions <strong>-rw-r&#8211;r&#8211;</strong> (644) on a ls -l<br />
Whatever be the session.save_path setting in the php.ini, it should have the permission of 1777<br />
Run IMP test to check the problem at: http://webmail.DOMAIN.COM/horde/imp/test.php and make sure that you get the <strong><span style="color: #008000;">green</span></strong> words for all the tests.<br />
This problem may occur if the domain&#8217;s web content is hosted on another server and the MX DNS record doesn&#8217;t exist or points not to the Plesk server. IMP tries to check mail on whatever server the domain name resolves to. In order to prevent this from happening the domain name or MX record (if it exists) must be resolved locally to the server.</p>
<p>References : <a  href="http://kb.parallels.com/article_41_260_en.html">http://kb.parallels.com/article_41_260_en.html</a></p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=When+trying+to+log+in+to+Plesk+horde%2C+the+login+page+reloads+and+does+not+log+in+into+webmail.+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F26" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=When+trying+to+log+in+to+Plesk+horde%2C+the+login+page+reloads+and+does+not+log+in+into+webmail.+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F26" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/04/when-trying-to-log-in-to-plesk-horde-the-login-page-reloads-and-does-not-log-in-into-webmail/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
