<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-25583</id>
	<title>Nabble - RoundCube Webmail</title>
	<updated>2009-11-27T13:41:25Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/RoundCube-Webmail-f25583.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/RoundCube-Webmail-f25583.html" />
	<subtitle type="html">&lt;a href=&quot;http://www.roundcube.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Roundcube Webmail&lt;/a&gt;&amp;nbsp;is a browser-based multilingual IMAP client with an application-like user interface.
&lt;br&gt;It provides full functionality you expect from an e-mail client, including MIME support, address book, folder manipulation, message searching and spell checking.
&lt;br&gt;&lt;b&gt;RoundCube Webmail&lt;/b&gt;&amp;nbsp;is written in PHP and requires a MySQL or Postgres database. 
&lt;br&gt;The user interface is fully skinnable using XHTML and CSS 2.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26548097</id>
	<title>Re: [RCD] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-27T13:41:25Z</published>
	<updated>2009-11-27T13:41:25Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">Le mercredi 25 novembre 2009 19:56, fakessh a écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, 25 Nov 2009 11:19:08 -0600, chasd &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26548097&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chasd@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Research indicates that you referred me over file
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; [root@r13151 www]# find . -name '*.php' -exec grep -l &amp;quot;header
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The regular expression got broken to an additional line by my MUA.
&lt;br&gt;&amp;gt; &amp;gt; Make sure that regex is all on one line, and then run that command.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; It looks like you'll also have to look for files that end in &amp;quot; .inc &amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; as well
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; find . -name '*.inc' -exec grep -l &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; &amp;gt; ./program/steps/addressbook/export.inc
&lt;br&gt;&amp;gt; &amp;gt; ./program/steps/mail/attachments.inc
&lt;br&gt;&amp;gt; &amp;gt; ./program/steps/mail/get.inc
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; exactly how it should change the file returned by the command
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; quoted above
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; anywhere you see :
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; header('Content-Type: ***************);
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; put
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; header('Accept: text/xml');
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; on a line beneath it.
&lt;br&gt;&amp;gt; &amp;gt; I'm not sure if the Accept header should also include other mime types.
&lt;br&gt;&amp;gt; &amp;gt; Here is a random Accept: header from our Intranet :
&lt;br&gt;&amp;gt; &amp;gt; Accept:application/xml,application/xhtml+xml,text/html;q=0.9,text/
&lt;br&gt;&amp;gt; &amp;gt; plain;q=0.8,image/png,*/*;q=0.5
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; There are tools to see those headers, I used Safari's Web Inspector.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Note the actual mime type sent via the Content-Type: header isn't
&lt;br&gt;&amp;gt; &amp;gt; always the same :
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; find . -name '*.inc' -exec grep &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; header('Content-Type: text/x-vcard; charset='.RCMAIL_CHARSET);
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: ' . $attachment['mimetype']);
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;header('Content-Type: text/html; charset=' . RCMAIL_CHARSET);
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; find . -name '*.php' -exec grep &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; header('Content-Type: text/plain');
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/html; charset=' . $this-
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;charset);
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/plain; charset=' . $this-
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;get_charset());
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;header('Content-Type: text/plain; charset=UTF-8');
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/css');
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; RoundCube sends that Content-Type: header for every page, but it
&lt;br&gt;&amp;gt; &amp;gt; sends other headers depending on what page or what data is being
&lt;br&gt;&amp;gt; &amp;gt; sent. If you add the Accept: header at each point where the Content-
&lt;br&gt;&amp;gt; &amp;gt; Type: header is sent, that should make mod_security happy.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I failed to operate roundcubemail with the changes indicated in your post
&lt;br&gt;&amp;gt; when mod_security is active
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; mod_security with in disabled state, the roundcubemail release 0.3.1
&lt;br&gt;&amp;gt; works well under CentOS 5.4 MacOS X 10.4 with Safari or Firefox: any
&lt;br&gt;&amp;gt; this with a PPC processor
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; changes indicated by you, are not sufficient or is not correct, at least
&lt;br&gt;&amp;gt; with mod_security for apache can not access the webmail
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I still need your help and your advanced knowledge in the operation of
&lt;br&gt;&amp;gt; roundcube
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks for your help
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi all
&lt;br&gt;Hi list 
&lt;br&gt;Hi charles
&lt;br&gt;&lt;br&gt;&lt;br&gt;here's nobody else who encounters the same problems with the release 0.3.1 and 
&lt;br&gt;mod_security. here is the problem for tests ordered by Charles, we must stop 
&lt;br&gt;roundcube and now I have three accounts running on production with roundcube 
&lt;br&gt;disables mod_security
&lt;br&gt;&lt;br&gt;&lt;br&gt;It bothers me to stop my webmail service for several hours
&lt;br&gt;&lt;br&gt;&lt;br&gt;if anyone has a solution, an official patch
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;a good suggestion
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks for all your
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-problem-with-old-old-stable-version-0.1.1-Re%3A-recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26431075p26548097.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26548094</id>
	<title>Re: [RCU] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-27T13:41:25Z</published>
	<updated>2009-11-27T13:41:25Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">Le mercredi 25 novembre 2009 19:56, fakessh a écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, 25 Nov 2009 11:19:08 -0600, chasd &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26548094&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chasd@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Research indicates that you referred me over file
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; [root@r13151 www]# find . -name '*.php' -exec grep -l &amp;quot;header
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The regular expression got broken to an additional line by my MUA.
&lt;br&gt;&amp;gt; &amp;gt; Make sure that regex is all on one line, and then run that command.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; It looks like you'll also have to look for files that end in &amp;quot; .inc &amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; as well
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; find . -name '*.inc' -exec grep -l &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; &amp;gt; ./program/steps/addressbook/export.inc
&lt;br&gt;&amp;gt; &amp;gt; ./program/steps/mail/attachments.inc
&lt;br&gt;&amp;gt; &amp;gt; ./program/steps/mail/get.inc
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; exactly how it should change the file returned by the command
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; quoted above
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; anywhere you see :
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; header('Content-Type: ***************);
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; put
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; header('Accept: text/xml');
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; on a line beneath it.
&lt;br&gt;&amp;gt; &amp;gt; I'm not sure if the Accept header should also include other mime types.
&lt;br&gt;&amp;gt; &amp;gt; Here is a random Accept: header from our Intranet :
&lt;br&gt;&amp;gt; &amp;gt; Accept:application/xml,application/xhtml+xml,text/html;q=0.9,text/
&lt;br&gt;&amp;gt; &amp;gt; plain;q=0.8,image/png,*/*;q=0.5
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; There are tools to see those headers, I used Safari's Web Inspector.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Note the actual mime type sent via the Content-Type: header isn't
&lt;br&gt;&amp;gt; &amp;gt; always the same :
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; find . -name '*.inc' -exec grep &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; header('Content-Type: text/x-vcard; charset='.RCMAIL_CHARSET);
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: ' . $attachment['mimetype']);
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;header('Content-Type: text/html; charset=' . RCMAIL_CHARSET);
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; find . -name '*.php' -exec grep &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; header('Content-Type: text/plain');
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/html; charset=' . $this-
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;charset);
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/plain; charset=' . $this-
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;get_charset());
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;header('Content-Type: text/plain; charset=UTF-8');
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/css');
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; RoundCube sends that Content-Type: header for every page, but it
&lt;br&gt;&amp;gt; &amp;gt; sends other headers depending on what page or what data is being
&lt;br&gt;&amp;gt; &amp;gt; sent. If you add the Accept: header at each point where the Content-
&lt;br&gt;&amp;gt; &amp;gt; Type: header is sent, that should make mod_security happy.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I failed to operate roundcubemail with the changes indicated in your post
&lt;br&gt;&amp;gt; when mod_security is active
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; mod_security with in disabled state, the roundcubemail release 0.3.1
&lt;br&gt;&amp;gt; works well under CentOS 5.4 MacOS X 10.4 with Safari or Firefox: any
&lt;br&gt;&amp;gt; this with a PPC processor
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; changes indicated by you, are not sufficient or is not correct, at least
&lt;br&gt;&amp;gt; with mod_security for apache can not access the webmail
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I still need your help and your advanced knowledge in the operation of
&lt;br&gt;&amp;gt; roundcube
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks for your help
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi all
&lt;br&gt;Hi list 
&lt;br&gt;Hi charles
&lt;br&gt;&lt;br&gt;&lt;br&gt;here's nobody else who encounters the same problems with the release 0.3.1 and 
&lt;br&gt;mod_security. here is the problem for tests ordered by Charles, we must stop 
&lt;br&gt;roundcube and now I have three accounts running on production with roundcube 
&lt;br&gt;disables mod_security
&lt;br&gt;&lt;br&gt;&lt;br&gt;It bothers me to stop my webmail service for several hours
&lt;br&gt;&lt;br&gt;&lt;br&gt;if anyone has a solution, an official patch
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;a good suggestion
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks for all your
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--RCU--recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26514909p26548094.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26545468</id>
	<title>Russian Updated</title>
	<published>2009-11-27T09:21:07Z</published>
	<updated>2009-11-27T09:21:07Z</updated>
	<author>
		<name>Artur Smolkin-3</name>
	</author>
	<content type="html">Hello everybody!
&lt;br&gt;&lt;br&gt;Up to 100%.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&amp;nbsp;The following attachments have been detached and are available for viewing.
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://detached.gigo.com/rc/Kk/PfxxF/9t/labels.inc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://detached.gigo.com/rc/Kk/PfxxF/9t/labels.inc&lt;/a&gt;&lt;br&gt;&amp;nbsp;Only click these links if you trust the sender, as well as this message.
&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Russian-Updated-tp26545468p26545468.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26536249</id>
	<title>[PATCH] Extra Fields In standard address book</title>
	<published>2009-11-26T15:35:50Z</published>
	<updated>2009-11-26T15:35:50Z</updated>
	<author>
		<name>Brendan Beveridge</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I submitted this patch a fair while ago but it was not included.
&lt;br&gt;&lt;br&gt;It adds the following fields:
&lt;br&gt;'work_number',
&lt;br&gt;'home_number',
&lt;br&gt;'fax_number',
&lt;br&gt;'mobile_number',
&lt;br&gt;'title',
&lt;br&gt;'company',
&lt;br&gt;'work_address',
&lt;br&gt;'home_address',
&lt;br&gt;'note'
&lt;br&gt;&lt;br&gt;it also stores and exports these in vcards as well.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I have updated it to be applied to current trunk (r3140)
&lt;br&gt;&lt;br&gt;I have only added labels for US so other language labels will need to be 
&lt;br&gt;modified.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Brendan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&amp;nbsp;The following attachments have been detached and are available for viewing.
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://detached.gigo.com/rc/1G/CTpenbVN/extended_address_boo.diff&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://detached.gigo.com/rc/1G/CTpenbVN/extended_address_boo.diff&lt;/a&gt;&lt;br&gt;&amp;nbsp;Only click these links if you trust the sender, as well as this message.
&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PATCH--Extra-Fields-In-standard-address-book-tp26536249p26536249.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26532090</id>
	<title>Translation update for nl_NL (Dutch / Nederlands)</title>
	<published>2009-11-26T08:47:07Z</published>
	<updated>2009-11-26T08:47:07Z</updated>
	<author>
		<name>Frits Letteboer - St. Radio Twenterand</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Should bring nl_NL to 100% and fixed a small typo.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&amp;nbsp;The following attachments have been detached and are available for viewing.
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://detached.gigo.com/rc/yv/5RoyVdoO/labels.inc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://detached.gigo.com/rc/yv/5RoyVdoO/labels.inc&lt;/a&gt;&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://detached.gigo.com/rc/yv/5RoyVdoO/messages.inc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://detached.gigo.com/rc/yv/5RoyVdoO/messages.inc&lt;/a&gt;&lt;br&gt;&amp;nbsp;Only click these links if you trust the sender, as well as this message.
&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Translation-update-for-nl_NL-%28Dutch---Nederlands%29-tp26532090p26532090.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26527804</id>
	<title>Re: [RCD] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-26T03:06:23Z</published>
	<updated>2009-11-26T03:06:23Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">Le jeudi 26 novembre 2009 00:03, vous avez écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Nov 25, 2009, at 12:56 PM, fakessh wrote:
&lt;br&gt;&amp;gt; &amp;gt; I failed to operate roundcubemail with the changes indicated in
&lt;br&gt;&amp;gt; &amp;gt; your post
&lt;br&gt;&amp;gt; &amp;gt; when mod_security is active
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hmm, not sure of the next step.
&lt;br&gt;&amp;gt; Can you post the logged mod_security errors like you did last time ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I still need your help and your advanced knowledge in the operation of
&lt;br&gt;&amp;gt; &amp;gt; roundcube
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I wouldn't say my knowledge is advanced, I've just been using it for
&lt;br&gt;&amp;gt; quite some time.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;I just put into production roundcube for some friends. I can not make changes 
&lt;br&gt;in the day, the webmail is stable yet. I'd do this Thursday night at midnight 
&lt;br&gt;Paris time (0:00) just enough time to do the tests you ask me.
&lt;br&gt;&lt;br&gt;&lt;br&gt;you wrote on my personal address, rather than post on the dev list
&lt;br&gt;this is probably a problem of click
&lt;br&gt;&lt;br&gt;thanks charles 
&lt;br&gt;thank you for your assistance is invaluable to me
&lt;br&gt;&lt;br&gt;many thanks
&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-problem-with-old-old-stable-version-0.1.1-Re%3A-recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26431075p26527804.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26527796</id>
	<title>Re: [RCU] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-26T03:06:23Z</published>
	<updated>2009-11-26T03:06:23Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">Le jeudi 26 novembre 2009 00:03, vous avez écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Nov 25, 2009, at 12:56 PM, fakessh wrote:
&lt;br&gt;&amp;gt; &amp;gt; I failed to operate roundcubemail with the changes indicated in
&lt;br&gt;&amp;gt; &amp;gt; your post
&lt;br&gt;&amp;gt; &amp;gt; when mod_security is active
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hmm, not sure of the next step.
&lt;br&gt;&amp;gt; Can you post the logged mod_security errors like you did last time ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I still need your help and your advanced knowledge in the operation of
&lt;br&gt;&amp;gt; &amp;gt; roundcube
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I wouldn't say my knowledge is advanced, I've just been using it for
&lt;br&gt;&amp;gt; quite some time.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;I just put into production roundcube for some friends. I can not make changes 
&lt;br&gt;in the day, the webmail is stable yet. I'd do this Thursday night at midnight 
&lt;br&gt;Paris time (0:00) just enough time to do the tests you ask me.
&lt;br&gt;&lt;br&gt;&lt;br&gt;you wrote on my personal address, rather than post on the dev list
&lt;br&gt;this is probably a problem of click
&lt;br&gt;&lt;br&gt;thanks charles 
&lt;br&gt;thank you for your assistance is invaluable to me
&lt;br&gt;&lt;br&gt;many thanks
&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--RCU--recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26514909p26527796.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26526534</id>
	<title>Bring all the icons closer to each other</title>
	<published>2009-11-26T01:18:19Z</published>
	<updated>2009-11-26T01:18:19Z</updated>
	<author>
		<name>Jesús Guerrero-2</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I am using roundcube since some months ago, all in all it's being a great
&lt;br&gt;experience. It's simple enough and it works really well for my purposes so
&lt;br&gt;I have to thank everyone involved for it.
&lt;br&gt;&lt;br&gt;I wanted to ask something simple about the default skin.
&lt;br&gt;&lt;br&gt;Is it me the only one that finds really inconvenient to traverse the whole
&lt;br&gt;screen to click &amp;quot;select all&amp;quot; and then go back to the top to select the
&lt;br&gt;action (mark read, delete, move...)? Besides that, the selection icons are
&lt;br&gt;really small on a big display. I am probably going to do my custom fork of
&lt;br&gt;the skin, I am just curious to know if there's something planned to improve
&lt;br&gt;the usability of the default skin or something.
&lt;br&gt;&lt;br&gt;I thought about submitting a patch bringing all the controls closer to
&lt;br&gt;each other, but since it's really trivial I don't want to spam the dev list
&lt;br&gt;with silly patches if there's no need to.
&lt;br&gt;&lt;br&gt;If this has already been discussed, please, kindly point me to wherever it
&lt;br&gt;belongs. I follow the user and dev lists and haven't noticed anything about
&lt;br&gt;this problem.
&lt;br&gt;&lt;br&gt;Regards.
&lt;br&gt;-- 
&lt;br&gt;Jesús Guerrero
&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Bring-all-the-icons-closer-to-each-other-tp26526534p26526534.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26518296</id>
	<title>Re: [RCU] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-25T10:53:14Z</published>
	<updated>2009-11-25T10:53:14Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">On Wed, 25 Nov 2009 11:19:08 -0600, chasd &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26518296&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chasd@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Research indicates that you referred me over file
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; [root@r13151 www]# find . -name '*.php' -exec grep -l &amp;quot;header
&lt;br&gt;&amp;gt;&amp;gt; ('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The regular expression got broken to an additional line by my MUA.
&lt;br&gt;&amp;gt; Make sure that regex is all on one line, and then run that command.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It looks like you'll also have to look for files that end in &amp;quot; .inc &amp;quot; &amp;nbsp;
&lt;br&gt;&amp;gt; as well
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; find . -name '*.inc' -exec grep -l &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; ./program/steps/addressbook/export.inc
&lt;br&gt;&amp;gt; ./program/steps/mail/attachments.inc
&lt;br&gt;&amp;gt; ./program/steps/mail/get.inc
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; exactly how it should change the file returned by the command &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; quoted above
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; anywhere you see :
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; header('Content-Type: ***************);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; put
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; header('Accept: text/xml');
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; on a line beneath it.
&lt;br&gt;&amp;gt; I'm not sure if the Accept header should also include other mime types.
&lt;br&gt;&amp;gt; Here is a random Accept: header from our Intranet :
&lt;br&gt;&amp;gt; Accept:application/xml,application/xhtml+xml,text/html;q=0.9,text/ 
&lt;br&gt;&amp;gt; plain;q=0.8,image/png,*/*;q=0.5
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; There are tools to see those headers, I used Safari's Web Inspector.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Note the actual mime type sent via the Content-Type: header isn't &amp;nbsp;
&lt;br&gt;&amp;gt; always the same :
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; find . -name '*.inc' -exec grep &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; header('Content-Type: text/x-vcard; charset='.RCMAIL_CHARSET);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: ' . $attachment['mimetype']);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;header('Content-Type: text/html; charset=' . RCMAIL_CHARSET);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; find . -name '*.php' -exec grep &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; header('Content-Type: text/plain');
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/html; charset=' . $this- 
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;charset);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/plain; charset=' . $this- 
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;get_charset());
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;header('Content-Type: text/plain; charset=UTF-8');
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/css');
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; RoundCube sends that Content-Type: header for every page, but it &amp;nbsp;
&lt;br&gt;&amp;gt; sends other headers depending on what page or what data is being &amp;nbsp;
&lt;br&gt;&amp;gt; sent. If you add the Accept: header at each point where the Content- 
&lt;br&gt;&amp;gt; Type: header is sent, that should make mod_security happy.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;I failed to operate roundcubemail with the changes indicated in your post
&lt;br&gt;when mod_security is active
&lt;br&gt;&lt;br&gt;mod_security with in disabled state, the roundcubemail release 0.3.1
&lt;br&gt;works well under CentOS 5.4 MacOS X 10.4 with Safari or Firefox: any
&lt;br&gt;this with a PPC processor
&lt;br&gt;&lt;br&gt;&lt;br&gt;changes indicated by you, are not sufficient or is not correct, at least
&lt;br&gt;with mod_security for apache can not access the webmail
&lt;br&gt;&lt;br&gt;I still need your help and your advanced knowledge in the operation of
&lt;br&gt;roundcube
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks for your help
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--RCU--recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26514909p26518296.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516730</id>
	<title>Re: [RCU] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-25T09:19:08Z</published>
	<updated>2009-11-25T09:19:08Z</updated>
	<author>
		<name>chasd</name>
	</author>
	<content type="html">&amp;gt;
&lt;br&gt;&amp;gt; Research indicates that you referred me over file
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [root@r13151 www]# find . -name '*.php' -exec grep -l &amp;quot;header
&lt;br&gt;&amp;gt; ('Content-Type:&amp;quot; {} \;
&lt;br&gt;&lt;br&gt;The regular expression got broken to an additional line by my MUA.
&lt;br&gt;Make sure that regex is all on one line, and then run that command.
&lt;br&gt;&lt;br&gt;It looks like you'll also have to look for files that end in &amp;quot; .inc &amp;quot; &amp;nbsp;
&lt;br&gt;as well
&lt;br&gt;&lt;br&gt;find . -name '*.inc' -exec grep -l &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;./program/steps/addressbook/export.inc
&lt;br&gt;./program/steps/mail/attachments.inc
&lt;br&gt;./program/steps/mail/get.inc
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; exactly how it should change the file returned by the command &amp;nbsp;
&lt;br&gt;&amp;gt; quoted above
&lt;br&gt;&lt;br&gt;anywhere you see :
&lt;br&gt;&lt;br&gt;header('Content-Type: ***************);
&lt;br&gt;&lt;br&gt;put
&lt;br&gt;&lt;br&gt;header('Accept: text/xml');
&lt;br&gt;&lt;br&gt;on a line beneath it.
&lt;br&gt;I'm not sure if the Accept header should also include other mime types.
&lt;br&gt;Here is a random Accept: header from our Intranet :
&lt;br&gt;Accept:application/xml,application/xhtml+xml,text/html;q=0.9,text/ 
&lt;br&gt;plain;q=0.8,image/png,*/*;q=0.5
&lt;br&gt;&lt;br&gt;There are tools to see those headers, I used Safari's Web Inspector.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Note the actual mime type sent via the Content-Type: header isn't &amp;nbsp;
&lt;br&gt;always the same :
&lt;br&gt;&lt;br&gt;find . -name '*.inc' -exec grep &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&lt;br&gt;header('Content-Type: text/x-vcard; charset='.RCMAIL_CHARSET);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: ' . $attachment['mimetype']);
&lt;br&gt;&amp;nbsp; &amp;nbsp;header('Content-Type: text/html; charset=' . RCMAIL_CHARSET);
&lt;br&gt;&lt;br&gt;find . -name '*.php' -exec grep &amp;quot;header('Content-Type:&amp;quot; {} \;
&lt;br&gt;&lt;br&gt;header('Content-Type: text/plain');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/html; charset=' . $this- 
&lt;br&gt;&amp;nbsp;&amp;gt;charset);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/plain; charset=' . $this- 
&lt;br&gt;&amp;nbsp;&amp;gt;get_charset());
&lt;br&gt;&amp;nbsp; &amp;nbsp;header('Content-Type: text/plain; charset=UTF-8');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;header('Content-Type: text/css');
&lt;br&gt;&lt;br&gt;&lt;br&gt;RoundCube sends that Content-Type: header for every page, but it &amp;nbsp;
&lt;br&gt;sends other headers depending on what page or what data is being &amp;nbsp;
&lt;br&gt;sent. If you add the Accept: header at each point where the Content- 
&lt;br&gt;Type: header is sent, that should make mod_security happy.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Charles Dostale
&lt;br&gt;System Admin - Silver Oaks Communications
&lt;br&gt;&lt;a href=&quot;http://www.silveroaks.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.silveroaks.com/&lt;/a&gt;&lt;br&gt;824 17th Street, Moline &amp;nbsp;IL &amp;nbsp;61265
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--RCU--recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26514909p26516730.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516404</id>
	<title>Re: [RCU] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-25T09:01:35Z</published>
	<updated>2009-11-25T09:01:35Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; [chasd@mail roundcube]$ find . -name '*.php' -exec grep -l &amp;quot;header 
&lt;br&gt;&amp;gt; ('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; ./program/js/tiny_mce/plugins/spellchecker/rpc.php
&lt;br&gt;&amp;gt; ./program/include/rcube_html_page.php
&lt;br&gt;&amp;gt; ./program/include/rcube_json_output.php
&lt;br&gt;&amp;gt; ./bin/html2text.php
&lt;br&gt;&amp;gt; ./bin/modcss.php
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;Research indicates that you referred me over file
&lt;br&gt;&lt;br&gt;[root@r13151 www]# find . -name '*.php' -exec grep -l &amp;quot;header 
&lt;br&gt;('Content-Type:&amp;quot; {} \;
&lt;br&gt;./bin/decrypt.php
&lt;br&gt;./bin/html2text.php
&lt;br&gt;./bin/modcss.php
&lt;br&gt;./config/main.inc.php
&lt;br&gt;./index.php
&lt;br&gt;./plugins/managesieve/lib/rcube_sieve.php
&lt;br&gt;./plugins/managesieve/managesieve.php
&lt;br&gt;./plugins/password/drivers/directadmin.php
&lt;br&gt;./program/include/html.php
&lt;br&gt;./program/include/rcube_config.php
&lt;br&gt;./program/include/rcube_html_page.php
&lt;br&gt;./program/include/rcube_imap.php
&lt;br&gt;./program/include/rcube_json_output.php
&lt;br&gt;./program/include/rcube_mail_mime.php
&lt;br&gt;./program/include/rcube_smtp.php
&lt;br&gt;./program/js/tiny_mce/plugins/spellchecker/classes/GoogleSpell.php
&lt;br&gt;./program/js/tiny_mce/plugins/spellchecker/rpc.php
&lt;br&gt;[root@r13151 www]# 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; This page :
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-3017&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-3017&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; indicates this line should be added to each of those files after the &amp;nbsp;
&lt;br&gt;&amp;gt; content type header :
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; header('Accept: text/xml');
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As for the
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD&amp;quot;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;exactly how it should change the file returned by the command quoted above
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'm not a very friendly atmosphere great php and I want to know exactly
&lt;br&gt;what I have to do
&lt;br&gt;&lt;br&gt;I thank you in advance for the help that you could bring me to correct
&lt;br&gt;files that require changes. thank you for your valuable help
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks charles
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--RCU--recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26514909p26516404.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516398</id>
	<title>Re: [RCD] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-25T09:01:16Z</published>
	<updated>2009-11-25T09:01:16Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; [chasd@mail roundcube]$ find . -name '*.php' -exec grep -l &amp;quot;header 
&lt;br&gt;&amp;gt; ('Content-Type:&amp;quot; {} \;
&lt;br&gt;&amp;gt; ./program/js/tiny_mce/plugins/spellchecker/rpc.php
&lt;br&gt;&amp;gt; ./program/include/rcube_html_page.php
&lt;br&gt;&amp;gt; ./program/include/rcube_json_output.php
&lt;br&gt;&amp;gt; ./bin/html2text.php
&lt;br&gt;&amp;gt; ./bin/modcss.php
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;Research indicates that you referred me over file
&lt;br&gt;&lt;br&gt;[root@r13151 www]# find . -name '*.php' -exec grep -l &amp;quot;header 
&lt;br&gt;('Content-Type:&amp;quot; {} \;
&lt;br&gt;./bin/decrypt.php
&lt;br&gt;./bin/html2text.php
&lt;br&gt;./bin/modcss.php
&lt;br&gt;./config/main.inc.php
&lt;br&gt;./index.php
&lt;br&gt;./plugins/managesieve/lib/rcube_sieve.php
&lt;br&gt;./plugins/managesieve/managesieve.php
&lt;br&gt;./plugins/password/drivers/directadmin.php
&lt;br&gt;./program/include/html.php
&lt;br&gt;./program/include/rcube_config.php
&lt;br&gt;./program/include/rcube_html_page.php
&lt;br&gt;./program/include/rcube_imap.php
&lt;br&gt;./program/include/rcube_json_output.php
&lt;br&gt;./program/include/rcube_mail_mime.php
&lt;br&gt;./program/include/rcube_smtp.php
&lt;br&gt;./program/js/tiny_mce/plugins/spellchecker/classes/GoogleSpell.php
&lt;br&gt;./program/js/tiny_mce/plugins/spellchecker/rpc.php
&lt;br&gt;[root@r13151 www]# 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; This page :
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-3017&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-3017&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; indicates this line should be added to each of those files after the &amp;nbsp;
&lt;br&gt;&amp;gt; content type header :
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; header('Accept: text/xml');
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As for the
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD&amp;quot;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;exactly how it should change the file returned by the command quoted above
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'm not a very friendly atmosphere great php and I want to know exactly
&lt;br&gt;what I have to do
&lt;br&gt;&lt;br&gt;I thank you in advance for the help that you could bring me to correct
&lt;br&gt;files that require changes. thank you for your valuable help
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks charles
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-problem-with-old-old-stable-version-0.1.1-Re%3A-recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26431075p26516398.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515876</id>
	<title>Re: [RCD] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-25T08:30:21Z</published>
	<updated>2009-11-25T08:30:21Z</updated>
	<author>
		<name>chasd</name>
	</author>
	<content type="html">Sorry I was too busy yesterday to respond to your post on RCU.
&lt;br&gt;When I glanced at your post, I thought it might be mod_security &amp;nbsp;
&lt;br&gt;causing the issue.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; [file
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/ 
&lt;br&gt;&amp;gt;&amp;gt; modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;bdt3UVdiuugAAHbbVjAAAAAA&amp;quot;]
&lt;br&gt;&amp;gt;&amp;gt; [Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot; required.
&lt;/div&gt;&lt;br&gt;There are several errors related to this.
&lt;br&gt;Some Googling indicates a header needs to be added to the output.
&lt;br&gt;&lt;br&gt;A quick search indicates several files that would need to be modified :
&lt;br&gt;&lt;br&gt;[chasd@mail roundcube]$ find . -name '*.php' -exec grep -l &amp;quot;header 
&lt;br&gt;('Content-Type:&amp;quot; {} \;
&lt;br&gt;./program/js/tiny_mce/plugins/spellchecker/rpc.php
&lt;br&gt;./program/include/rcube_html_page.php
&lt;br&gt;./program/include/rcube_json_output.php
&lt;br&gt;./bin/html2text.php
&lt;br&gt;./bin/modcss.php
&lt;br&gt;&lt;br&gt;This page :
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-3017&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-3017&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;indicates this line should be added to each of those files after the &amp;nbsp;
&lt;br&gt;content type header :
&lt;br&gt;&lt;br&gt;header('Accept: text/xml');
&lt;br&gt;&lt;br&gt;As for the
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD&amp;quot;
&lt;br&gt;&lt;br&gt;that is a warning and shouldn't impact the functionality of RoundCube.
&lt;br&gt;I did not find a fix for that warning, and I'm not familiar enough &amp;nbsp;
&lt;br&gt;with mod_security to know exactly what it is complaining about.
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;My Google search indicates that other web apps that control their &amp;nbsp;
&lt;br&gt;headers run into this issue with mod_security, notably Gallery2.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Charles Dostale
&lt;br&gt;System Admin - Silver Oaks Communications
&lt;br&gt;&lt;a href=&quot;http://www.silveroaks.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.silveroaks.com/&lt;/a&gt;&lt;br&gt;824 17th Street, Moline &amp;nbsp;IL &amp;nbsp;61265
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-problem-with-old-old-stable-version-0.1.1-Re%3A-recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26431075p26515876.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515868</id>
	<title>Re: [RCU] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-25T08:30:21Z</published>
	<updated>2009-11-25T08:30:21Z</updated>
	<author>
		<name>chasd</name>
	</author>
	<content type="html">Sorry I was too busy yesterday to respond to your post on RCU.
&lt;br&gt;When I glanced at your post, I thought it might be mod_security &amp;nbsp;
&lt;br&gt;causing the issue.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; [file
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/ 
&lt;br&gt;&amp;gt;&amp;gt; modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;bdt3UVdiuugAAHbbVjAAAAAA&amp;quot;]
&lt;br&gt;&amp;gt;&amp;gt; [Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot; required.
&lt;/div&gt;&lt;br&gt;There are several errors related to this.
&lt;br&gt;Some Googling indicates a header needs to be added to the output.
&lt;br&gt;&lt;br&gt;A quick search indicates several files that would need to be modified :
&lt;br&gt;&lt;br&gt;[chasd@mail roundcube]$ find . -name '*.php' -exec grep -l &amp;quot;header 
&lt;br&gt;('Content-Type:&amp;quot; {} \;
&lt;br&gt;./program/js/tiny_mce/plugins/spellchecker/rpc.php
&lt;br&gt;./program/include/rcube_html_page.php
&lt;br&gt;./program/include/rcube_json_output.php
&lt;br&gt;./bin/html2text.php
&lt;br&gt;./bin/modcss.php
&lt;br&gt;&lt;br&gt;This page :
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-3017&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-3017&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;indicates this line should be added to each of those files after the &amp;nbsp;
&lt;br&gt;content type header :
&lt;br&gt;&lt;br&gt;header('Accept: text/xml');
&lt;br&gt;&lt;br&gt;As for the
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD&amp;quot;
&lt;br&gt;&lt;br&gt;that is a warning and shouldn't impact the functionality of RoundCube.
&lt;br&gt;I did not find a fix for that warning, and I'm not familiar enough &amp;nbsp;
&lt;br&gt;with mod_security to know exactly what it is complaining about.
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;My Google search indicates that other web apps that control their &amp;nbsp;
&lt;br&gt;headers run into this issue with mod_security, notably Gallery2.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Charles Dostale
&lt;br&gt;System Admin - Silver Oaks Communications
&lt;br&gt;&lt;a href=&quot;http://www.silveroaks.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.silveroaks.com/&lt;/a&gt;&lt;br&gt;824 17th Street, Moline &amp;nbsp;IL &amp;nbsp;61265
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--RCU--recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26514909p26515868.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26514914</id>
	<title>Re: recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-25T07:38:12Z</published>
	<updated>2009-11-25T07:38:12Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">Le lundi 23 novembre 2009 20:26, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26514914&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fakessh@...&lt;/a&gt; a écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Le lundi 23 novembre 2009 17:26, chasd a écrit :
&lt;br&gt;&amp;gt; &amp;gt; There should be some type of PHP error in the web server log, even if  
&lt;br&gt;&amp;gt; &amp;gt; RoundCube doesn't write a log file.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; hi charles
&lt;br&gt;&amp;gt; hi all
&lt;br&gt;&amp;gt; hi list
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the information you request it from the vhosts that contains
&lt;br&gt;&amp;gt; roundcubemail, which is installed properly. like the fact my friend the
&lt;br&gt;&amp;gt; computer company
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I received a lecture of computer that day. I thank, I learned a lot in
&lt;br&gt;&amp;gt; three hours
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; the log file of vhosts :
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [root@r13151 ~]# tail -f /var/log/httpd/roundcube-error_log
&lt;br&gt;&amp;gt; [Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt; &amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;bdt3UVdiuugAAHbbVjAAAAAA&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt; &amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/skins/default/common.css&amp;quot;]
&lt;br&gt;&amp;gt; [unique_id &amp;quot;bea-jFdiuugAAHbrfQQAAAAF&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt; &amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/skins/default/images/roundcube_logo.png&amp;quot;]
&lt;br&gt;&amp;gt; [unique_id &amp;quot;becyH1diuugAAHbgXvgAAAAB&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 00:54:32 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt; &amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;bjVcpldiuugAAHbte-kAAAAG&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 10:29:06 2009] [error] [client 62.147.237.78] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHO
&lt;br&gt;&amp;gt; D&amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Requ
&lt;br&gt;&amp;gt; est Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.fakessh.eu
&lt;br&gt;&amp;gt; &amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;dPm5eFdiuugAAHbrfQ0AAAAF&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 11:57:18 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 12:11:31 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 15:51:28 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 15:55:47 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 16:12:11 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 17:19:28 2009] [error] [client 83.193.172.167] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 17:19:31 2009] [error] [client 83.193.172.167] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [root@r13151 ~]# tail -f /var/log/httpd/roundcube-access_log
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:17:19:28 +0100] &amp;quot;GET /favicon.ico HTTP/1.1&amp;quot;
&lt;br&gt;&amp;gt; 404 299
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:17:19:31 +0100] &amp;quot;GET /favicon.ico HTTP/1.1&amp;quot;
&lt;br&gt;&amp;gt; 404 299
&lt;br&gt;&amp;gt; 85.92.222.254 - - [23/Nov/2009:17:28:25 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2679
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:25 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/favicon.ico HTTP/1.1&amp;quot; 200 1150
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 200 8671
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 200 11303
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 200 57254
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 200 89866
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 200 6794
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 200 538
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:27
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 200 211
&lt;br&gt;&amp;gt; 85.92.222.254 - - [23/Nov/2009:17:28:33 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2679
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:33 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/favicon.ico HTTP/1.1&amp;quot; 200 1150
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 200 8671
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 200 11303
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 200 57254
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 200 89866
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 200 538
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 200 6794
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 200 211
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:15:30 +0100] &amp;quot;GET /?_task=&amp;_action=login
&lt;br&gt;&amp;gt; HTTP/1.1&amp;quot; 200 2534
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:08 +0100] &amp;quot;GET /?_task=&amp;_action=login
&lt;br&gt;&amp;gt; HTTP/1.1&amp;quot; 200 2534
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/display/icons.png HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:20:36 +0100] &amp;quot;POST / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;&amp;gt; [root@r13151 ~]#
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks charlles
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks all
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi list
&lt;br&gt;Hi all 
&lt;br&gt;&lt;br&gt;removing mod_security apache server, I finally have access to webmail 
&lt;br&gt;roundcube
&lt;br&gt;&lt;br&gt;mod_security is still important to combat all kinds of attacks
&lt;br&gt;&lt;br&gt;remove mod_security is not a stable solution, my server becomes vulnerable to 
&lt;br&gt;all sorts of attacks
&lt;br&gt;&lt;br&gt;&lt;br&gt;I use the last official realease team roundcube: ie the version 0.3.1
&lt;br&gt;and plus I never managed to run the installer
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks for all your feedbacks
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-problem-with-old-old-stable-version-0.1.1-Re%3A-recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26431075p26514914.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26514909</id>
	<title>Re: [RCU] recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-25T07:38:12Z</published>
	<updated>2009-11-25T07:38:12Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">Le lundi 23 novembre 2009 20:26, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26514909&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fakessh@...&lt;/a&gt; a écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Le lundi 23 novembre 2009 17:26, chasd a écrit :
&lt;br&gt;&amp;gt; &amp;gt; There should be some type of PHP error in the web server log, even if  
&lt;br&gt;&amp;gt; &amp;gt; RoundCube doesn't write a log file.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; hi charles
&lt;br&gt;&amp;gt; hi all
&lt;br&gt;&amp;gt; hi list
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the information you request it from the vhosts that contains
&lt;br&gt;&amp;gt; roundcubemail, which is installed properly. like the fact my friend the
&lt;br&gt;&amp;gt; computer company
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I received a lecture of computer that day. I thank, I learned a lot in
&lt;br&gt;&amp;gt; three hours
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; the log file of vhosts :
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [root@r13151 ~]# tail -f /var/log/httpd/roundcube-error_log
&lt;br&gt;&amp;gt; [Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt; &amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;bdt3UVdiuugAAHbbVjAAAAAA&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt; &amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/skins/default/common.css&amp;quot;]
&lt;br&gt;&amp;gt; [unique_id &amp;quot;bea-jFdiuugAAHbrfQQAAAAF&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt; &amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/skins/default/images/roundcube_logo.png&amp;quot;]
&lt;br&gt;&amp;gt; [unique_id &amp;quot;becyH1diuugAAHbgXvgAAAAB&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 00:54:32 2009] [error] [client 81.56.161.95] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;gt; &amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;&amp;gt; st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;&amp;gt; e.fr&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;bjVcpldiuugAAHbte-kAAAAG&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 10:29:06 2009] [error] [client 62.147.237.78] ModSecurity:
&lt;br&gt;&amp;gt; Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHO
&lt;br&gt;&amp;gt; D&amp;quot; required.
&lt;br&gt;&amp;gt; [file
&lt;br&gt;&amp;gt; &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;]
&lt;br&gt;&amp;gt; [line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Requ
&lt;br&gt;&amp;gt; est Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;]
&lt;br&gt;&amp;gt; [tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.fakessh.eu
&lt;br&gt;&amp;gt; &amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;dPm5eFdiuugAAHbrfQ0AAAAF&amp;quot;]
&lt;br&gt;&amp;gt; [Mon Nov 23 11:57:18 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 12:11:31 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 15:51:28 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 15:55:47 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 16:12:11 2009] [error] [client 213.41.153.223] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 17:19:28 2009] [error] [client 83.193.172.167] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt; [Mon Nov 23 17:19:31 2009] [error] [client 83.193.172.167] File does not
&lt;br&gt;&amp;gt; exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [root@r13151 ~]# tail -f /var/log/httpd/roundcube-access_log
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:17:19:28 +0100] &amp;quot;GET /favicon.ico HTTP/1.1&amp;quot;
&lt;br&gt;&amp;gt; 404 299
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:17:19:31 +0100] &amp;quot;GET /favicon.ico HTTP/1.1&amp;quot;
&lt;br&gt;&amp;gt; 404 299
&lt;br&gt;&amp;gt; 85.92.222.254 - - [23/Nov/2009:17:28:25 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2679
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:25 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/favicon.ico HTTP/1.1&amp;quot; 200 1150
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 200 8671
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 200 11303
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 200 57254
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 200 89866
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 200 6794
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:26
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 200 538
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:27
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 200 211
&lt;br&gt;&amp;gt; 85.92.222.254 - - [23/Nov/2009:17:28:33 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2679
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:33 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/favicon.ico HTTP/1.1&amp;quot; 200 1150
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 200 8671
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 200 11303
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 200 57254
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 200 89866
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 200 538
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 200 6794
&lt;br&gt;&amp;gt; 193.164.156.10 - - [23/Nov/2009:17:28:34
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 200 211
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:15:30 +0100] &amp;quot;GET /?_task=&amp;_action=login
&lt;br&gt;&amp;gt; HTTP/1.1&amp;quot; 200 2534
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:08 +0100] &amp;quot;GET /?_task=&amp;_action=login
&lt;br&gt;&amp;gt; HTTP/1.1&amp;quot; 200 2534
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:16:09
&lt;br&gt;&amp;gt; +0100] &amp;quot;GET /skins/default/images/display/icons.png HTTP/1.1&amp;quot; 304 -
&lt;br&gt;&amp;gt; 83.193.172.167 - - [23/Nov/2009:19:20:36 +0100] &amp;quot;POST / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;&amp;gt; [root@r13151 ~]#
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks charlles
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks all
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi list
&lt;br&gt;Hi all 
&lt;br&gt;&lt;br&gt;removing mod_security apache server, I finally have access to webmail 
&lt;br&gt;roundcube
&lt;br&gt;&lt;br&gt;mod_security is still important to combat all kinds of attacks
&lt;br&gt;&lt;br&gt;remove mod_security is not a stable solution, my server becomes vulnerable to 
&lt;br&gt;all sorts of attacks
&lt;br&gt;&lt;br&gt;&lt;br&gt;I use the last official realease team roundcube: ie the version 0.3.1
&lt;br&gt;and plus I never managed to run the installer
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks for all your feedbacks
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--RCU--recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26514909p26514909.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26505511</id>
	<title>Missing labels translated to Spanish (Spain)</title>
	<published>2009-11-24T16:07:43Z</published>
	<updated>2009-11-24T16:07:43Z</updated>
	<author>
		<name>David Ballesteros</name>
	</author>
	<content type="html">Hi! I am free(dom) software enthusiast user based in Spain, I have come to know Round Cube from some time (and I think it rocks) ago and I would like to contribute even if just a little.
&lt;br&gt;Since I am not into coding, but I have a decent command of english, I can help with translations.
&lt;br&gt;I send some missing labels in order to complete the Spanish (Spain) translation, so it can be 100% complete!
&lt;br&gt;&lt;br&gt;Best regards from Spain:
&lt;br&gt;David Ballesteros.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&amp;nbsp;The following attachments have been detached and are available for viewing.
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://detached.gigo.com/rc/QG/JeKocjPm/labels.inc.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://detached.gigo.com/rc/QG/JeKocjPm/labels.inc.tar.gz&lt;/a&gt;&lt;br&gt;&amp;nbsp;Only click these links if you trust the sender, as well as this message.
&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Missing-labels-translated-to-Spanish-%28Spain%29-tp26505511p26505511.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499290</id>
	<title>Locatization for es_ES</title>
	<published>2009-11-24T08:43:24Z</published>
	<updated>2009-11-24T08:43:24Z</updated>
	<author>
		<name>Jorge Valdes</name>
	</author>
	<content type="html">Here is an updated labels.inc for the es_ES localization:
&lt;br&gt;&lt;br&gt;+ Added missing translations.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;() &amp;nbsp;ascii ribbon campaign - against html e-mail
&lt;br&gt;/\ &amp;nbsp;www.asciiribon.org &amp;nbsp; &amp;nbsp;- against propietary attacments
&lt;br&gt;Ing. Jorge Valdes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499290&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jvaldes@...&lt;/a&gt;
&lt;br&gt;IntercomSCI El Salvador
&lt;br&gt;- Transformando sus Telecomunicaciones
&lt;br&gt;voz: +503 2278-5068
&lt;br&gt;fax: +503 2265-7025
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&amp;nbsp;The following attachments have been detached and are available for viewing.
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://detached.gigo.com/rc/UC/QwYSNxD/labels.inc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://detached.gigo.com/rc/UC/QwYSNxD/labels.inc&lt;/a&gt;&lt;br&gt;&amp;nbsp;Only click these links if you trust the sender, as well as this message.
&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Locatization-for-es_ES-tp26499290p26499290.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26493409</id>
	<title>Re: Address book expansion patch, using VCard to store extra info by Phil W.</title>
	<published>2009-11-24T02:15:19Z</published>
	<updated>2009-11-24T02:15:19Z</updated>
	<author>
		<name>Johannes Hessellund-2</name>
	</author>
	<content type="html">The advanced address book is the only thing holding me back from rolling 
&lt;br&gt;out roundcube on my users.
&lt;br&gt;&lt;br&gt;It would be really great if it could make it into next roundcube release.
&lt;br&gt;&lt;br&gt;Ultimo december 2009 sounds really nice, or first quarter of 2010.
&lt;br&gt;&lt;br&gt;Thank you all for the great work.
&lt;br&gt;&lt;br&gt;/Johannes
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;A.L.E.C skrev:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Roland Liebl wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The roadmap states that vcard rich contact informations is a 
&lt;br&gt;&amp;gt;&amp;gt; milestone for v0.5. But why not to make users happy a little bit 
&lt;br&gt;&amp;gt;&amp;gt; earlier?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Currently I'm busy with threads implementation and I'll not work on 
&lt;br&gt;&amp;gt; other big feature until I finish. It could be probably not earlier 
&lt;br&gt;&amp;gt; than &amp;nbsp;end of this year.
&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Address-book-expansion-patch%2C-using-VCard-to-store-extra-info-by-Phil-W.-tp26440171p26493409.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26493234</id>
	<title>Re: messages caching issues</title>
	<published>2009-11-24T02:00:25Z</published>
	<updated>2009-11-24T02:00:25Z</updated>
	<author>
		<name>Roland Liebl</name>
	</author>
	<content type="html">On Tue, 24 Nov 2009 08:22:34 +0100, &amp;quot;A.L.E.C&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26493234&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alec@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; It relies on messagescount, sorting, session_id, etc. It means, I think,
&lt;br&gt;&lt;br&gt;&amp;gt; cache is used rarely. Maybe we shouldn't allow caching messages at all?
&lt;br&gt;&lt;br&gt;I agree. You should remove message caching at all. I have problems with
&lt;br&gt;that
&lt;br&gt;feature. My whitelist plugin displays messages only if sender is in a
&lt;br&gt;whitelist
&lt;br&gt;or an addressbook. Otherwise it shows a dummy message with a button to add
&lt;br&gt;sender to
&lt;br&gt;whitelist. Currently I have to prevent caching of the dummy message by a
&lt;br&gt;hack
&lt;br&gt;in CORE which prevented me to publish my plugin.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;R.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/messages-caching-issues-tp26491444p26493234.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26491444</id>
	<title>messages caching issues</title>
	<published>2009-11-23T23:22:34Z</published>
	<updated>2009-11-23T23:22:34Z</updated>
	<author>
		<name>A.L.E.C</name>
	</author>
	<content type="html">Currently we have possibility to cache messages in browser. However this 
&lt;br&gt;feature is problematic. See &lt;a href=&quot;http://trac.roundcube.net/ticket/1486281&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://trac.roundcube.net/ticket/1486281&lt;/a&gt;. 
&lt;br&gt;There're also other issues related to javascript commands included into 
&lt;br&gt;(cached) page. Because of that we're using such complicated procedure 
&lt;br&gt;for ETag generation:
&lt;br&gt;&lt;br&gt;$etag = md5($MESSAGE-&amp;gt;uid.$mbox_name.session_id()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.intval($MESSAGE-&amp;gt;headers-&amp;gt;mdn_sent)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.intval($MESSAGE-&amp;gt;is_safe)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.(!empty($MESSAGE-&amp;gt;attachments) ? intval($CONFIG['inline_images']) 
&lt;br&gt;: '')
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.intval($PRINT_MODE)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.$_SESSION['sort_col'].$_SESSION['sort_order']
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.$IMAP-&amp;gt;messagecount($mbox_name, 'ALL', true)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;);
&lt;br&gt;&lt;br&gt;It relies on messagescount, sorting, session_id, etc. It means, I think, 
&lt;br&gt;cache is used rarely. Maybe we shouldn't allow caching messages at all?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Aleksander 'A.L.E.C' Machniak &lt;a href=&quot;http://alec.pl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://alec.pl&lt;/a&gt;&amp;nbsp;gg:2275252
&lt;br&gt;LAN Management System Developer &lt;a href=&quot;http://lms.org.pl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lms.org.pl&lt;/a&gt;&lt;br&gt;Roundcube Webmail Project Developer &lt;a href=&quot;http://roundcube.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://roundcube.net&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/messages-caching-issues-tp26491444p26491444.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26484327</id>
	<title>Re: recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-23T11:26:33Z</published>
	<updated>2009-11-23T11:26:33Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">Le lundi 23 novembre 2009 17:26, chasd a écrit :
&lt;br&gt;&amp;gt; There should be some type of PHP error in the web server log, even if  
&lt;br&gt;&amp;gt; RoundCube doesn't write a log file.
&lt;br&gt;&lt;br&gt;&lt;br&gt;hi charles 
&lt;br&gt;hi all
&lt;br&gt;hi list
&lt;br&gt;&lt;br&gt;Here is the information you request it from the vhosts that contains 
&lt;br&gt;roundcubemail, which is installed properly. like the fact my friend the 
&lt;br&gt;computer company
&lt;br&gt;&lt;br&gt;I received a lecture of computer that day. I thank, I learned a lot in three 
&lt;br&gt;hours
&lt;br&gt;&lt;br&gt;the log file of vhosts : &amp;nbsp;
&lt;br&gt;&lt;br&gt;[root@r13151 ~]# tail -f /var/log/httpd/roundcube-error_log 
&lt;br&gt;[Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity: Warning. 
&lt;br&gt;Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;quot; required. 
&lt;br&gt;[file &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;] 
&lt;br&gt;[line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;] 
&lt;br&gt;[tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;e.fr&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;bdt3UVdiuugAAHbbVjAAAAAA&amp;quot;]
&lt;br&gt;[Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity: Warning. 
&lt;br&gt;Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;quot; required. 
&lt;br&gt;[file &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;] 
&lt;br&gt;[line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;] 
&lt;br&gt;[tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;e.fr&amp;quot;] [uri &amp;quot;/skins/default/common.css&amp;quot;] 
&lt;br&gt;[unique_id &amp;quot;bea-jFdiuugAAHbrfQQAAAAF&amp;quot;]
&lt;br&gt;[Mon Nov 23 00:54:27 2009] [error] [client 81.56.161.95] ModSecurity: Warning. 
&lt;br&gt;Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;quot; required. 
&lt;br&gt;[file &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;] 
&lt;br&gt;[line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;] 
&lt;br&gt;[tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;e.fr&amp;quot;] [uri &amp;quot;/skins/default/images/roundcube_logo.png&amp;quot;] 
&lt;br&gt;[unique_id &amp;quot;becyH1diuugAAHbgXvgAAAAB&amp;quot;]
&lt;br&gt;[Mon Nov 23 00:54:32 2009] [error] [client 81.56.161.95] ModSecurity: Warning. 
&lt;br&gt;Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHOD
&lt;br&gt;&amp;quot; required. 
&lt;br&gt;[file &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;] 
&lt;br&gt;[line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Reque
&lt;br&gt;st Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;] 
&lt;br&gt;[tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.renelacrout
&lt;br&gt;e.fr&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;bjVcpldiuugAAHbte-kAAAAG&amp;quot;]
&lt;br&gt;[Mon Nov 23 10:29:06 2009] [error] [client 62.147.237.78] ModSecurity: 
&lt;br&gt;Warning. Match of &amp;quot;rx ^OPTIONS$&amp;quot; against &amp;quot;REQUEST_METHO
&lt;br&gt;D&amp;quot; required. 
&lt;br&gt;[file &amp;quot;/etc/httpd/modsecurity.d/modsecurity_crs_21_protocol_anomalies.conf&amp;quot;] 
&lt;br&gt;[line &amp;quot;41&amp;quot;] [id &amp;quot;960015&amp;quot;] [msg &amp;quot;Requ
&lt;br&gt;est Missing an Accept Header&amp;quot;] [severity &amp;quot;CRITICAL&amp;quot;] 
&lt;br&gt;[tag &amp;quot;PROTOCOL_VIOLATION/MISSING_HEADER&amp;quot;] [hostname &amp;quot;roundcube.fakessh.eu
&lt;br&gt;&amp;quot;] [uri &amp;quot;/&amp;quot;] [unique_id &amp;quot;dPm5eFdiuugAAHbrfQ0AAAAF&amp;quot;]
&lt;br&gt;[Mon Nov 23 11:57:18 2009] [error] [client 213.41.153.223] File does not 
&lt;br&gt;exist: /home/roundcube/www/favicon.ico
&lt;br&gt;[Mon Nov 23 12:11:31 2009] [error] [client 213.41.153.223] File does not 
&lt;br&gt;exist: /home/roundcube/www/favicon.ico
&lt;br&gt;[Mon Nov 23 15:51:28 2009] [error] [client 213.41.153.223] File does not 
&lt;br&gt;exist: /home/roundcube/www/favicon.ico
&lt;br&gt;[Mon Nov 23 15:55:47 2009] [error] [client 213.41.153.223] File does not 
&lt;br&gt;exist: /home/roundcube/www/favicon.ico
&lt;br&gt;[Mon Nov 23 16:12:11 2009] [error] [client 213.41.153.223] File does not 
&lt;br&gt;exist: /home/roundcube/www/favicon.ico
&lt;br&gt;[Mon Nov 23 17:19:28 2009] [error] [client 83.193.172.167] File does not 
&lt;br&gt;exist: /home/roundcube/www/favicon.ico
&lt;br&gt;[Mon Nov 23 17:19:31 2009] [error] [client 83.193.172.167] File does not 
&lt;br&gt;exist: /home/roundcube/www/favicon.ico
&lt;br&gt;&lt;br&gt;&lt;br&gt;[root@r13151 ~]# tail -f /var/log/httpd/roundcube-access_log 
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:17:19:28 +0100] &amp;quot;GET /favicon.ico HTTP/1.1&amp;quot; 
&lt;br&gt;404 299
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:17:19:31 +0100] &amp;quot;GET /favicon.ico HTTP/1.1&amp;quot; 
&lt;br&gt;404 299
&lt;br&gt;85.92.222.254 - - [23/Nov/2009:17:28:25 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2679
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:25 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:26 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/favicon.ico HTTP/1.1&amp;quot; 200 1150
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:26 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 200 8671
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:26 
&lt;br&gt;+0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 200 11303
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:26 
&lt;br&gt;+0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 200 57254
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:26 
&lt;br&gt;+0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 200 89866
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:26 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 200 6794
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:26 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 200 538
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:27 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 200 211
&lt;br&gt;85.92.222.254 - - [23/Nov/2009:17:28:33 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2679
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:33 +0100] &amp;quot;GET / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:34 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/favicon.ico HTTP/1.1&amp;quot; 200 1150
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:34 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 200 8671
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:34 
&lt;br&gt;+0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 200 11303
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:34 
&lt;br&gt;+0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 200 57254
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:34 
&lt;br&gt;+0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 200 89866
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:34 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 200 538
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:34 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 200 6794
&lt;br&gt;193.164.156.10 - - [23/Nov/2009:17:28:34 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 200 211
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:15:30 +0100] &amp;quot;GET /?_task=&amp;_action=login 
&lt;br&gt;HTTP/1.1&amp;quot; 200 2534
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:08 +0100] &amp;quot;GET /?_task=&amp;_action=login 
&lt;br&gt;HTTP/1.1&amp;quot; 200 2534
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:09 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/common.css?s=1254823233 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:09 
&lt;br&gt;+0100] &amp;quot;GET /program/js/jquery-1.3.min.js?s=1240222531 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:09 
&lt;br&gt;+0100] &amp;quot;GET /program/js/common.js?s=1256995296 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:09 
&lt;br&gt;+0100] &amp;quot;GET /program/js/app.js?s=1256995295 HTTP/1.1&amp;quot; 304 -
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:09 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/roundcube_logo.png HTTP/1.1&amp;quot; 304 -
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:09 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/listheader.gif HTTP/1.1&amp;quot; 304 -
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:09 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/buttons/bg.gif HTTP/1.1&amp;quot; 304 -
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:16:09 
&lt;br&gt;+0100] &amp;quot;GET /skins/default/images/display/icons.png HTTP/1.1&amp;quot; 304 -
&lt;br&gt;83.193.172.167 - - [23/Nov/2009:19:20:36 +0100] &amp;quot;POST / HTTP/1.1&amp;quot; 200 2441
&lt;br&gt;[root@r13151 ~]# 
&lt;br&gt;&lt;br&gt;thanks charlles
&lt;br&gt;&lt;br&gt;thanks all
&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-problem-with-old-old-stable-version-0.1.1-Re%3A-recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26431075p26484327.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26481334</id>
	<title>Re: recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-23T08:26:52Z</published>
	<updated>2009-11-23T08:26:52Z</updated>
	<author>
		<name>chasd</name>
	</author>
	<content type="html">&lt;br&gt;On Nov 21, 2009, at 3:38 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26481334&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fakessh@...&lt;/a&gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I can not have any log in page index.php effect runs only up to &amp;nbsp;
&lt;br&gt;&amp;gt; line 81
&lt;br&gt;&lt;br&gt;There should be some type of PHP error in the web server log, even if &amp;nbsp;
&lt;br&gt;RoundCube doesn't write a log file.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Charles Dostale
&lt;br&gt;System Admin - Silver Oaks Communications
&lt;br&gt;&lt;a href=&quot;http://www.silveroaks.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.silveroaks.com/&lt;/a&gt;&lt;br&gt;824 17th Street, Moline &amp;nbsp;IL &amp;nbsp;61265
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-problem-with-old-old-stable-version-0.1.1-Re%3A-recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26431075p26481334.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26479663</id>
	<title>Re: Roundcube Installer Issues</title>
	<published>2009-11-23T06:59:31Z</published>
	<updated>2009-11-23T06:59:31Z</updated>
	<author>
		<name>avi-38</name>
	</author>
	<content type="html">&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26479663&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;avi@...&lt;/a&gt; wrote ..
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have resolved the issue, but am still confused. I commented out some lines in
&lt;br&gt;&amp;gt; the PHP autoloader function(roundcube\installer\utils.php) and then had more errors.
&lt;br&gt;&amp;gt; Again as I un-commented those lines, and restarted the web server, the second page
&lt;br&gt;&amp;gt; of the installer appeared. There seems to be no logic to it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So, I rest my case, although doubtfully.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26479663&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;avi@...&lt;/a&gt; wrote ..
&lt;br&gt;&amp;gt; &amp;gt; I am trying to install the latest version of Roundcube 0.3.1. My configuration
&lt;br&gt;&amp;gt; &amp;gt; is postfix-mysql and dovecot. I am running virtual domains, the
&lt;br&gt;&amp;gt; &amp;gt; setup works fine with Horde and Squirrelmail. Php version is 5.2.1.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; On the first page the response by the Roundcube Installer is:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; --------------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Checking PHP version
&lt;br&gt;&amp;gt; &amp;gt; Version: &amp;nbsp;OK(PHP 5.2.11 detected)
&lt;br&gt;&amp;gt; &amp;gt; Checking PHP extensions
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; The following modules/extensions are required to run RoundCube:
&lt;br&gt;&amp;gt; &amp;gt; PCRE: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; DOM: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Session: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; XML: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; The next couple of extensions are optional and recommended to get the best performance:
&lt;br&gt;&amp;gt; &amp;gt; FileInfo: &amp;nbsp;NOT AVAILABLE(Could be loaded. Please add in php.ini; See &lt;a href=&quot;http://www.php.net/manual/en/ref.fileinfo.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/manual/en/ref.fileinfo.php&lt;/a&gt;)
&lt;br&gt;&amp;gt; &amp;gt; Libiconv: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Multibyte: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; OpenSSL: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Mcrypt: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; GD: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Checking available databases
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Check which of the supported extensions are installed. At least one of them is
&lt;br&gt;&amp;gt; &amp;gt; required.
&lt;br&gt;&amp;gt; &amp;gt; MySQL: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; MySQLi: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; PostgreSQL: &amp;nbsp;NOT AVAILABLE(Not installed)
&lt;br&gt;&amp;gt; &amp;gt; SQLite (v2): &amp;nbsp;NOT AVAILABLE(Not installed)
&lt;br&gt;&amp;gt; &amp;gt; Check for required 3rd party libs
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; This also checks if the include path is set correctly.
&lt;br&gt;&amp;gt; &amp;gt; PEAR: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; MDB2: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Net_SMTP: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Mail_mime: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; iilConnection: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Checking php.ini/.htaccess settings
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; The following settings are required to run RoundCube:
&lt;br&gt;&amp;gt; &amp;gt; file_uploads: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; session.auto_start: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; zend.ze1_compatibility_mode: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; mbstring.func_overload: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; suhosin.session.encrypt: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; The following settings are optional and recommended:
&lt;br&gt;&amp;gt; &amp;gt; date.timezone: &amp;nbsp;NOT OK(Could be set)
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; However, when I click on NEXT I get this error page:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;Internal Server Error&amp;quot; .. bla ..bla..
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; My logs show this error:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Nov 23 18:41:37 avi httpd: PHP Warning: &amp;nbsp;include_once(PEAR_Error.php) [&amp;lt;a href='function.include-once'&amp;gt;function.include-once&amp;lt;/a&amp;gt;]:
&lt;br&gt;&amp;gt; &amp;gt; failed to open stream: No such file or directory in /var/www/xxxxx/roundcubemail/installer/utils.php
&lt;br&gt;&amp;gt; &amp;gt; on line 41
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Nov 23 18:41:37 avi httpd: PHP Warning: &amp;nbsp;include_once() [&amp;lt;a href='function.include'&amp;gt;function.include&amp;lt;/a&amp;gt;]:
&lt;br&gt;&amp;gt; &amp;gt; Failed opening 'PEAR_Error.php' for inclusion (include_path='/var/www/xxxxx/roundcubemail/program/lib:/var/www/xxxxx/roundcubemail/program:/var/www/xxxxx/roundcubemail/program/include:.:/usr/share/pear:/usr/share/php')
&lt;br&gt;&amp;gt; &amp;gt; in /var/www/xxxxx/roundcubemail/installer/utils.php on line 41
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Any idea what this error means? I googled thru and there was a similar issue
&lt;br&gt;&amp;gt; which
&lt;br&gt;&amp;gt; &amp;gt; turned out to be the requirement for mdb2 driver for Mysql, so I have also installed
&lt;br&gt;&amp;gt; &amp;gt; this driver, but again, I am getting the same error.
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Roundcube-Installer-Issues-tp26478068p26479663.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26478403</id>
	<title>Re: Roundcube Installer Issues</title>
	<published>2009-11-23T05:46:43Z</published>
	<updated>2009-11-23T05:46:43Z</updated>
	<author>
		<name>avi-38</name>
	</author>
	<content type="html">Thanks for the reply. But, I am not using open_basedir.
&lt;br&gt;&lt;br&gt;Claudio Kuenzler &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26478403&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;napsty@...&lt;/a&gt;&amp;gt; wrote ..
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've had a similar problem with my first installation.
&lt;br&gt;&amp;gt; Are you using open_basedir?
&lt;br&gt;&amp;gt; If yes, check the open_basedir entries. You have to be able to access the
&lt;br&gt;&amp;gt; php libs (e.g. under /usr/share/php)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In my case, once I correctly set the open_basedir entries, the installation
&lt;br&gt;&amp;gt; worked fine.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Mon, Nov 23, 2009 at 2:16 PM, &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26478403&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;avi@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I am trying to install the latest version of Roundcube 0.3.1. My
&lt;br&gt;&amp;gt; &amp;gt; configuration is postfix-mysql and dovecot. I am running virtual domains,
&lt;br&gt;&amp;gt; &amp;gt; the
&lt;br&gt;&amp;gt; &amp;gt; setup works fine with Horde and Squirrelmail. Php version is 5.2.1.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On the first page the response by the Roundcube Installer is:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --------------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Checking PHP version
&lt;br&gt;&amp;gt; &amp;gt; Version: &amp;nbsp;OK(PHP 5.2.11 detected)
&lt;br&gt;&amp;gt; &amp;gt; Checking PHP extensions
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The following modules/extensions are required to run RoundCube:
&lt;br&gt;&amp;gt; &amp;gt; PCRE: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; DOM: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Session: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; XML: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The next couple of extensions are optional and recommended to get the best
&lt;br&gt;&amp;gt; &amp;gt; performance:
&lt;br&gt;&amp;gt; &amp;gt; FileInfo: &amp;nbsp;NOT AVAILABLE(Could be loaded. Please add in php.ini; See
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.php.net/manual/en/ref.fileinfo.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/manual/en/ref.fileinfo.php&lt;/a&gt;)
&lt;br&gt;&amp;gt; &amp;gt; Libiconv: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Multibyte: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; OpenSSL: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Mcrypt: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; GD: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Checking available databases
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Check which of the supported extensions are installed. At least one of them
&lt;br&gt;&amp;gt; &amp;gt; is required.
&lt;br&gt;&amp;gt; &amp;gt; MySQL: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; MySQLi: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; PostgreSQL: &amp;nbsp;NOT AVAILABLE(Not installed)
&lt;br&gt;&amp;gt; &amp;gt; SQLite (v2): &amp;nbsp;NOT AVAILABLE(Not installed)
&lt;br&gt;&amp;gt; &amp;gt; Check for required 3rd party libs
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; This also checks if the include path is set correctly.
&lt;br&gt;&amp;gt; &amp;gt; PEAR: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; MDB2: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Net_SMTP: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Mail_mime: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; iilConnection: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; Checking php.ini/.htaccess settings
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The following settings are required to run RoundCube:
&lt;br&gt;&amp;gt; &amp;gt; file_uploads: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; session.auto_start: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; zend.ze1_compatibility_mode: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; mbstring.func_overload: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt; suhosin.session.encrypt: &amp;nbsp;OK
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The following settings are optional and recommended:
&lt;br&gt;&amp;gt; &amp;gt; date.timezone: &amp;nbsp;NOT OK(Could be set)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; However, when I click on NEXT I get this error page:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;Internal Server Error&amp;quot; .. bla ..bla..
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; My logs show this error:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Nov 23 18:41:37 avi httpd: PHP Warning: &amp;nbsp;include_once(PEAR_Error.php) [&amp;lt;a
&lt;br&gt;&amp;gt; &amp;gt; href='function.include-once'&amp;gt;function.include-once&amp;lt;/a&amp;gt;]: failed to open
&lt;br&gt;&amp;gt; &amp;gt; stream: No such file or directory in
&lt;br&gt;&amp;gt; &amp;gt; /var/www/xxxxx/roundcubemail/installer/utils.php on line 41
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Nov 23 18:41:37 avi httpd: PHP Warning: &amp;nbsp;include_once() [&amp;lt;a
&lt;br&gt;&amp;gt; &amp;gt; href='function.include'&amp;gt;function.include&amp;lt;/a&amp;gt;]: Failed opening
&lt;br&gt;&amp;gt; &amp;gt; 'PEAR_Error.php' for inclusion
&lt;br&gt;&amp;gt; &amp;gt; (include_path='/var/www/xxxxx/roundcubemail/program/lib:/var/www/xxxxx/roundcubemail/program:/var/www/xxxxx/roundcubemail/program/include:.:/usr/share/pear:/usr/share/php')
&lt;br&gt;&amp;gt; &amp;gt; in /var/www/xxxxx/roundcubemail/installer/utils.php on line 41
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Any idea what this error means? I googled thru and there was a similar
&lt;br&gt;&amp;gt; &amp;gt; issue which turned out to be the requirement for mdb2 driver for Mysql, so I
&lt;br&gt;&amp;gt; &amp;gt; have also installed this driver, but again, I am getting the same error.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt; List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Roundcube-Installer-Issues-tp26478068p26478403.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26478152</id>
	<title>Re: Roundcube Installer Issues</title>
	<published>2009-11-23T05:37:08Z</published>
	<updated>2009-11-23T05:37:08Z</updated>
	<author>
		<name>Claudio Kuenzler</name>
	</author>
	<content type="html">I&amp;#39;ve had a similar problem with my first installation.&lt;br&gt;Are you using open_basedir? &lt;br&gt;If yes, check the open_basedir entries. You have to be able to access the php libs (e.g. under /usr/share/php)&lt;br&gt;&lt;br&gt;In my case, once I correctly set the open_basedir entries, the installation worked fine.&lt;br&gt;
&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 23, 2009 at 2:16 PM,  &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26478152&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;avi@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
I am trying to install the latest version of Roundcube 0.3.1. My configuration is postfix-mysql and dovecot. I am running virtual domains, the&lt;br&gt;
setup works fine with Horde and Squirrelmail. Php version is 5.2.1.&lt;br&gt;
&lt;br&gt;
On the first page the response by the Roundcube Installer is:&lt;br&gt;
&lt;br&gt;
--------------------------------------------------------------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;
Checking PHP version&lt;br&gt;
Version:  OK(PHP 5.2.11 detected)&lt;br&gt;
Checking PHP extensions&lt;br&gt;
&lt;br&gt;
The following modules/extensions are required to run RoundCube:&lt;br&gt;
PCRE:  OK&lt;br&gt;
DOM:  OK&lt;br&gt;
Session:  OK&lt;br&gt;
XML:  OK&lt;br&gt;
&lt;br&gt;
The next couple of extensions are optional and recommended to get the best performance:&lt;br&gt;
FileInfo:  NOT AVAILABLE(Could be loaded. Please add in php.ini; See &lt;a href=&quot;http://www.php.net/manual/en/ref.fileinfo.php&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/manual/en/ref.fileinfo.php&lt;/a&gt;)&lt;br&gt;
Libiconv:  OK&lt;br&gt;
Multibyte:  OK&lt;br&gt;
OpenSSL:  OK&lt;br&gt;
Mcrypt:  OK&lt;br&gt;
GD:  OK&lt;br&gt;
Checking available databases&lt;br&gt;
&lt;br&gt;
Check which of the supported extensions are installed. At least one of them is required.&lt;br&gt;
MySQL:  OK&lt;br&gt;
MySQLi:  OK&lt;br&gt;
PostgreSQL:  NOT AVAILABLE(Not installed)&lt;br&gt;
SQLite (v2):  NOT AVAILABLE(Not installed)&lt;br&gt;
Check for required 3rd party libs&lt;br&gt;
&lt;br&gt;
This also checks if the include path is set correctly.&lt;br&gt;
PEAR:  OK&lt;br&gt;
MDB2:  OK&lt;br&gt;
Net_SMTP:  OK&lt;br&gt;
Mail_mime:  OK&lt;br&gt;
iilConnection:  OK&lt;br&gt;
Checking php.ini/.htaccess settings&lt;br&gt;
&lt;br&gt;
The following settings are required to run RoundCube:&lt;br&gt;
file_uploads:  OK&lt;br&gt;
session.auto_start:  OK&lt;br&gt;
zend.ze1_compatibility_mode:  OK&lt;br&gt;
mbstring.func_overload:  OK&lt;br&gt;
suhosin.session.encrypt:  OK&lt;br&gt;
&lt;br&gt;
The following settings are optional and recommended:&lt;br&gt;
date.timezone:  NOT OK(Could be set)&lt;br&gt;
&lt;br&gt;
---------------------------------------------------------------------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;
However, when I click on NEXT I get this error page:&lt;br&gt;
&lt;br&gt;
&amp;quot;Internal Server Error&amp;quot; .. bla ..bla..&lt;br&gt;
&lt;br&gt;
My logs show this error:&lt;br&gt;
&lt;br&gt;
Nov 23 18:41:37 avi httpd: PHP Warning:  include_once(PEAR_Error.php) [&amp;lt;a href=&amp;#39;function.include-once&amp;#39;&amp;gt;function.include-once&amp;lt;/a&amp;gt;]: failed to open stream: No such file or directory in /var/www/xxxxx/roundcubemail/installer/utils.php on line 41&lt;br&gt;

&lt;br&gt;
Nov 23 18:41:37 avi httpd: PHP Warning:  include_once() [&amp;lt;a href=&amp;#39;function.include&amp;#39;&amp;gt;function.include&amp;lt;/a&amp;gt;]: Failed opening &amp;#39;PEAR_Error.php&amp;#39; for inclusion (include_path=&amp;#39;/var/www/xxxxx/roundcubemail/program/lib:/var/www/xxxxx/roundcubemail/program:/var/www/xxxxx/roundcubemail/program/include:.:/usr/share/pear:/usr/share/php&amp;#39;) in /var/www/xxxxx/roundcubemail/installer/utils.php on line 41&lt;br&gt;

&lt;br&gt;
Any idea what this error means? I googled thru and there was a similar issue which turned out to be the requirement for mdb2 driver for Mysql, so I have also installed this driver, but again, I am getting the same error.&lt;br&gt;

&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;_______________________________________________&lt;br&gt;
List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Roundcube-Installer-Issues-tp26478068p26478152.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26478068</id>
	<title>Roundcube Installer Issues</title>
	<published>2009-11-23T05:16:45Z</published>
	<updated>2009-11-23T05:16:45Z</updated>
	<author>
		<name>avi-38</name>
	</author>
	<content type="html">I am trying to install the latest version of Roundcube 0.3.1. My configuration is postfix-mysql and dovecot. I am running virtual domains, the
&lt;br&gt;setup works fine with Horde and Squirrelmail. Php version is 5.2.1.
&lt;br&gt;&lt;br&gt;On the first page the response by the Roundcube Installer is:
&lt;br&gt;&lt;br&gt;--------------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;Checking PHP version
&lt;br&gt;Version: &amp;nbsp;OK(PHP 5.2.11 detected)
&lt;br&gt;Checking PHP extensions
&lt;br&gt;&lt;br&gt;The following modules/extensions are required to run RoundCube:
&lt;br&gt;PCRE: &amp;nbsp;OK
&lt;br&gt;DOM: &amp;nbsp;OK
&lt;br&gt;Session: &amp;nbsp;OK
&lt;br&gt;XML: &amp;nbsp;OK
&lt;br&gt;&lt;br&gt;The next couple of extensions are optional and recommended to get the best performance:
&lt;br&gt;FileInfo: &amp;nbsp;NOT AVAILABLE(Could be loaded. Please add in php.ini; See &lt;a href=&quot;http://www.php.net/manual/en/ref.fileinfo.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/manual/en/ref.fileinfo.php&lt;/a&gt;)
&lt;br&gt;Libiconv: &amp;nbsp;OK
&lt;br&gt;Multibyte: &amp;nbsp;OK
&lt;br&gt;OpenSSL: &amp;nbsp;OK
&lt;br&gt;Mcrypt: &amp;nbsp;OK
&lt;br&gt;GD: &amp;nbsp;OK
&lt;br&gt;Checking available databases
&lt;br&gt;&lt;br&gt;Check which of the supported extensions are installed. At least one of them is required.
&lt;br&gt;MySQL: &amp;nbsp;OK
&lt;br&gt;MySQLi: &amp;nbsp;OK
&lt;br&gt;PostgreSQL: &amp;nbsp;NOT AVAILABLE(Not installed)
&lt;br&gt;SQLite (v2): &amp;nbsp;NOT AVAILABLE(Not installed)
&lt;br&gt;Check for required 3rd party libs
&lt;br&gt;&lt;br&gt;This also checks if the include path is set correctly.
&lt;br&gt;PEAR: &amp;nbsp;OK
&lt;br&gt;MDB2: &amp;nbsp;OK
&lt;br&gt;Net_SMTP: &amp;nbsp;OK
&lt;br&gt;Mail_mime: &amp;nbsp;OK
&lt;br&gt;iilConnection: &amp;nbsp;OK
&lt;br&gt;Checking php.ini/.htaccess settings
&lt;br&gt;&lt;br&gt;The following settings are required to run RoundCube:
&lt;br&gt;file_uploads: &amp;nbsp;OK
&lt;br&gt;session.auto_start: &amp;nbsp;OK
&lt;br&gt;zend.ze1_compatibility_mode: &amp;nbsp;OK
&lt;br&gt;mbstring.func_overload: &amp;nbsp;OK
&lt;br&gt;suhosin.session.encrypt: &amp;nbsp;OK
&lt;br&gt;&lt;br&gt;The following settings are optional and recommended:
&lt;br&gt;date.timezone: &amp;nbsp;NOT OK(Could be set)
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;However, when I click on NEXT I get this error page:
&lt;br&gt;&lt;br&gt;&amp;quot;Internal Server Error&amp;quot; .. bla ..bla..
&lt;br&gt;&lt;br&gt;My logs show this error:
&lt;br&gt;&lt;br&gt;Nov 23 18:41:37 avi httpd: PHP Warning: &amp;nbsp;include_once(PEAR_Error.php) [&amp;lt;a href='function.include-once'&amp;gt;function.include-once&amp;lt;/a&amp;gt;]: failed to open stream: No such file or directory in /var/www/xxxxx/roundcubemail/installer/utils.php on line 41
&lt;br&gt;&lt;br&gt;Nov 23 18:41:37 avi httpd: PHP Warning: &amp;nbsp;include_once() [&amp;lt;a href='function.include'&amp;gt;function.include&amp;lt;/a&amp;gt;]: Failed opening 'PEAR_Error.php' for inclusion (include_path='/var/www/xxxxx/roundcubemail/program/lib:/var/www/xxxxx/roundcubemail/program:/var/www/xxxxx/roundcubemail/program/include:.:/usr/share/pear:/usr/share/php') in /var/www/xxxxx/roundcubemail/installer/utils.php on line 41
&lt;br&gt;&lt;br&gt;Any idea what this error means? I googled thru and there was a similar issue which turned out to be the requirement for mdb2 driver for Mysql, so I have also installed this driver, but again, I am getting the same error.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Roundcube-Installer-Issues-tp26478068p26478068.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26474870</id>
	<title>Show &quot;Flagged&quot; messages in folder count</title>
	<published>2009-11-23T01:27:11Z</published>
	<updated>2009-11-23T01:27:11Z</updated>
	<author>
		<name>julien vehent-2</name>
	</author>
	<content type="html">Hello guys,
&lt;br&gt;&lt;br&gt;There a feature I need in roundcube, it's to have the number of messages
&lt;br&gt;that possess the attribute &amp;quot;Flagged&amp;quot; in the folders list.
&lt;br&gt;&lt;br&gt;I am wondering if this can be done as a plugin or needs to be part of the
&lt;br&gt;core... I am no PHP expert, but maybe if you can give me some hints on
&lt;br&gt;where this should be implemented I would be able to do it myself :)
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Julien
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Show-%22Flagged%22-messages-in-folder-count-tp26474870p26474870.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26462446</id>
	<title>Re: List-Unsubscribe header support</title>
	<published>2009-11-21T18:50:51Z</published>
	<updated>2009-11-21T18:50:51Z</updated>
	<author>
		<name>Cor Bosman</name>
	</author>
	<content type="html">&lt;br&gt;On Nov 22, 2009, at 10:38 AM, Daniel Black wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sunday 22 November 2009 11:16:35 Teotónio Ricardo Miranda Leiras wrote:
&lt;br&gt;&amp;gt;&amp;gt; I don't know if you have already a support for this, but it would be
&lt;br&gt;&amp;gt;&amp;gt; usefull:
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.activecampaign.com/blog/list-unsubscribe-email-header/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activecampaign.com/blog/list-unsubscribe-email-header/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.list-unsubscribe.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.list-unsubscribe.com/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The current roundcube plugin API makes implementing this trivial. I'd say 
&lt;br&gt;&amp;gt; &amp;quot;Have a go and share your plugin&amp;quot; but it seems its there already:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://code.google.com/p/roundcube-plugins/downloads/list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/roundcube-plugins/downloads/list&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Other examples:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://trac.roundcube.net/wiki/Plugin_Repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://trac.roundcube.net/wiki/Plugin_Repository&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cor - Can I suggest - List-Archive and Archive-At headers too?
&lt;/div&gt;&lt;br&gt;Sure, i'll add those. 
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Cor
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/List-Unsubscribe-header-support-tp26461725p26462446.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26462407</id>
	<title>Re: List-Unsubscribe header support</title>
	<published>2009-11-21T18:38:20Z</published>
	<updated>2009-11-21T18:38:20Z</updated>
	<author>
		<name>Daniel Black-5</name>
	</author>
	<content type="html">On Sunday 22 November 2009 11:16:35 Teotónio Ricardo Miranda Leiras wrote:
&lt;br&gt;&amp;gt; I don't know if you have already a support for this, but it would be
&lt;br&gt;&amp;gt; &amp;nbsp;usefull:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.activecampaign.com/blog/list-unsubscribe-email-header/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activecampaign.com/blog/list-unsubscribe-email-header/&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.list-unsubscribe.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.list-unsubscribe.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;The current roundcube plugin API makes implementing this trivial. I'd say 
&lt;br&gt;&amp;quot;Have a go and share your plugin&amp;quot; but it seems its there already:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/roundcube-plugins/downloads/list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/roundcube-plugins/downloads/list&lt;/a&gt;&lt;br&gt;&lt;br&gt;Other examples:
&lt;br&gt;&lt;a href=&quot;http://trac.roundcube.net/wiki/Plugin_Repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://trac.roundcube.net/wiki/Plugin_Repository&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cor - Can I suggest - List-Archive and Archive-At headers too?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Black
&lt;br&gt;Infrastructure Administrator
&lt;br&gt;CAcert
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&amp;nbsp;The following attachments have been detached and are available for viewing.
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://detached.gigo.com/rc/ty/sNCEth99/signature.asc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://detached.gigo.com/rc/ty/sNCEth99/signature.asc&lt;/a&gt;&lt;br&gt;&amp;nbsp;Only click these links if you trust the sender, as well as this message.
&lt;br&gt;&amp;nbsp;--- 8&amp;lt; --- detachments --- 8&amp;lt; ---
&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/List-Unsubscribe-header-support-tp26461725p26462407.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26461725</id>
	<title>List-Unsubscribe header support</title>
	<published>2009-11-21T16:16:35Z</published>
	<updated>2009-11-21T16:16:35Z</updated>
	<author>
		<name>Teotónio Ricardo Miranda Leiras</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;I don't know if you have already a support for this, but it would be usefull:&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.activecampaign.com/blog/list-unsubscribe-email-header/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activecampaign.com/blog/list-unsubscribe-email-header/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.list-unsubscribe.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.list-unsubscribe.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;:)&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/List-Unsubscribe-header-support-tp26461725p26461725.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26460601</id>
	<title>Re: recurring problem at the level of authentication and total absence of log</title>
	<published>2009-11-21T13:38:50Z</published>
	<updated>2009-11-21T13:38:50Z</updated>
	<author>
		<name>fakessh@fakessh.eu</name>
	</author>
	<content type="html">Le jeudi 19 novembre 2009 22:10, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26460601&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fakessh@...&lt;/a&gt; a écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Le jeudi 19 novembre 2009 21:21, chasd a écrit :
&lt;br&gt;&amp;gt; &amp;gt; RoundCube writes its errors to the &amp;quot; errors &amp;quot; file in its logs  
&lt;br&gt;&amp;gt; &amp;gt; directory.
&lt;br&gt;&amp;gt; &amp;gt; PHP writes errors however you have it configured, usually the web  
&lt;br&gt;&amp;gt; &amp;gt; server error log ( /var/log/httpd/error_log ).
&lt;br&gt;&amp;gt; &amp;gt; Each log provides a different insight into the problem.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; You have many options to configure PHP logging in /etc/php.ini, read  
&lt;br&gt;&amp;gt; &amp;gt; it to decide what is best for you. I personally don't like logging  
&lt;br&gt;&amp;gt; &amp;gt; PHP errors to syslog, there is too much other stuff going into that  
&lt;br&gt;&amp;gt; &amp;gt; log already.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'll go see a friend in a business like yours that will make me a clean
&lt;br&gt;&amp;gt; installation. I remove the roundcube vhosts away and we left for the
&lt;br&gt;&amp;gt; evening hours in Paris
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks Charles
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;Hi all
&lt;br&gt;Hi list
&lt;br&gt;Hi charles , welcome , nice to meet you
&lt;br&gt;&lt;br&gt;I went to see my friend in the computer company, a technician UNIX system 
&lt;br&gt;administrator and programmer of web application
&lt;br&gt;my installation is now safe and solid as a rock
&lt;br&gt;it helps me put up a subdomain on any of my areas that now points to 
&lt;br&gt;roundcubemail
&lt;br&gt;we created a specific user and all housed in a specific directory using a 
&lt;br&gt;specific vhosts
&lt;br&gt;useradd -d /home/roundcube -m -s /bin/false -g users roundcube
&lt;br&gt;&lt;br&gt;I give the command ls -All the directory
&lt;br&gt;&lt;br&gt;[root@r13151 ~]# ls -All /home/roundcube/www/
&lt;br&gt;total 108
&lt;br&gt;drwx---r-x &amp;nbsp;2 roundcube users &amp;nbsp;4096 oct 31 14:21 bin
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp;2926 oct 31 14:20 CHANGELOG
&lt;br&gt;drwx---r-x &amp;nbsp;2 roundcube users &amp;nbsp;4096 nov 21 18:37 config
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp;1149 nov 21 17:51 .htaccess
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp;9829 nov 21 19:21 index.php
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp; &amp;nbsp;18 nov 21 18:08 info.php
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp;7857 oct 31 14:44 INSTALL
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp;7645 ao� 28 10:29 INSTALL.orig
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users 17987 oct 29 &amp;nbsp;2008 LICENSE
&lt;br&gt;drwx---rwx &amp;nbsp;2 roundcube users &amp;nbsp;4096 oct 31 14:20 logs
&lt;br&gt;drwx---r-x 22 roundcube users &amp;nbsp;4096 oct 31 14:20 plugins
&lt;br&gt;drwx---r-x &amp;nbsp;7 roundcube users &amp;nbsp;4096 oct 31 14:21 program
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp;1932 oct 31 14:44 README
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp; &amp;nbsp;26 mar 22 &amp;nbsp;2008 robots.txt
&lt;br&gt;drwx---r-x &amp;nbsp;3 roundcube users &amp;nbsp;4096 oct 31 14:20 skins
&lt;br&gt;drwx---r-x &amp;nbsp;2 roundcube users &amp;nbsp;4096 oct 31 14:20 SQL
&lt;br&gt;drwx---rwx &amp;nbsp;2 roundcube users &amp;nbsp;4096 oct 31 14:20 temp
&lt;br&gt;-rw----r-- &amp;nbsp;1 roundcube users &amp;nbsp;4668 mai 31 10:37 UPGRADING
&lt;br&gt;[root@r13151 ~]# 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;We've done some debug php to realize that line 81 was not running by doing 
&lt;br&gt;step by step with the following echo'' to see if the line is running print_r 
&lt;br&gt;and analyzed for the variables. So S_POST is empty
&lt;br&gt;&lt;br&gt;// try to log in
&lt;br&gt;if ($RCMAIL-&amp;gt;action=='login' &amp;&amp; $RCMAIL-&amp;gt;task=='mail') {
&lt;br&gt;&amp;nbsp; // purge the session in case of new login when a session already exists
&lt;br&gt;&amp;nbsp; $RCMAIL-&amp;gt;kill_session();
&lt;br&gt;&lt;br&gt;&amp;nbsp; $auth = $RCMAIL-&amp;gt;plugins-&amp;gt;exec_hook('authenticate', array(
&lt;br&gt;&amp;nbsp; &amp;nbsp; 'host' =&amp;gt; $RCMAIL-&amp;gt;autoselect_host(),
&lt;br&gt;@@@@@@@@@@@@@@@@@@@@@@@
&lt;br&gt;&lt;br&gt;it is one sub domain 
&lt;br&gt;&lt;a href=&quot;http://roundcube.nicolaspichot.fr/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://roundcube.nicolaspichot.fr/&lt;/a&gt;&lt;br&gt;&lt;br&gt;it is the phpinfo() page 
&lt;br&gt;&lt;a href=&quot;http://roundcube.nicolaspichot.fr/info.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://roundcube.nicolaspichot.fr/info.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;a telnet session opens without problem
&lt;br&gt;[swilting@new-host-2 ~]$ telnet roundcube.nicolaspichot.fr &amp;nbsp;143
&lt;br&gt;Trying 87.98.186.232...
&lt;br&gt;Connected to roundcube.nicolaspichot.fr (87.98.186.232).
&lt;br&gt;Escape character is '^]'.
&lt;br&gt;* OK Dovecot ready.
&lt;br&gt;a login nicolaspichot **************
&lt;br&gt;a OK Logged in.
&lt;br&gt;a select inbox
&lt;br&gt;* FLAGS (\Answered \Flagged \Deleted \Seen \Draft)
&lt;br&gt;* OK [PERMANENTFLAGS (\Answered \Flagged \Deleted \Seen \Draft \*)] Flags 
&lt;br&gt;permitted.
&lt;br&gt;* 2 EXISTS
&lt;br&gt;* 0 RECENT
&lt;br&gt;* OK [UNSEEN 1] First unseen.
&lt;br&gt;* OK [UIDVALIDITY 1258627412] UIDs valid
&lt;br&gt;* OK [UIDNEXT 3] Predicted next UID
&lt;br&gt;a OK [READ-WRITE] Select completed.
&lt;br&gt;a logout
&lt;br&gt;* BYE Logging out
&lt;br&gt;a OK Logout completed.
&lt;br&gt;Connection closed by foreign host.
&lt;br&gt;[swilting@new-host-2 ~]$ 
&lt;br&gt;&lt;br&gt;&lt;br&gt;I can not have any log in page index.php effect runs only up to line 81
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-problem-with-old-old-stable-version-0.1.1-Re%3A-recurring-problem-at-the-level-of-authentication-and-total-absence-of-log-tp26431075p26460601.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26459057</id>
	<title>datbase cleanup when mailboxes or domains are deleted</title>
	<published>2009-11-21T10:24:38Z</published>
	<updated>2009-11-21T10:24:38Z</updated>
	<author>
		<name>ben-11</name>
	</author>
	<content type="html">Does anybody have any ideas/scripts for maintaining (cleaning) the 
&lt;br&gt;roundcube database when mailboxes (or domains) are closed? I am not super 
&lt;br&gt;familiar with the db schema but we are about to begin offering RoundCube 
&lt;br&gt;webmail (in addition to squirrelmail -- so we'll utilize the 
&lt;br&gt;squirrelmail_usercopy plugin) and we have a post-deletion script that does 
&lt;br&gt;some filesystem maintenance. . . I want to extend it to keep cruft out of 
&lt;br&gt;the roundcube database and it seems there are several tables that would 
&lt;br&gt;obviously need rows removed (users, identities, contacts) and some other 
&lt;br&gt;tables I guess (cache, messages.) What about the session table?
&lt;br&gt;&lt;br&gt;Now that I write this and look more closely I gues it's not too 
&lt;br&gt;complicated for an invididual mailbox removal: The user_id column would 
&lt;br&gt;be the key. . . For a domain removal, it's slightly more intelligent logic 
&lt;br&gt;that would need to look for all users.username LIKE %@domain.org. . .
&lt;br&gt;&lt;br&gt;But I don't want to reinvent the wheel if someone's already put 
&lt;br&gt;work/thought into this!
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Ben
&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/users/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/users/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Users-f25584.html&quot; embed=&quot;fixTarget[25584]&quot; target=&quot;_top&quot; &gt;RoundCube - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/datbase-cleanup-when-mailboxes-or-domains-are-deleted-tp26459057p26459057.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26440469</id>
	<title>Re: Threads - first commit</title>
	<published>2009-11-20T01:26:57Z</published>
	<updated>2009-11-20T01:26:57Z</updated>
	<author>
		<name>Bugzilla from chris@atomice.net</name>
	</author>
	<content type="html">&lt;br&gt;On Fri, 20 Nov 2009 09:00:02 +0100, &amp;quot;A.L.E.C&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440469&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alec@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Chris January wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; I tried both methods, but PHP runs out of memory in both cases.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've made some tests and I think we can do nothing about this. The 
&lt;br&gt;&amp;gt; problem is not in preg_split, the problem is in PHP's arrays handling. 
&lt;br&gt;&amp;gt; Array with 150k items requires 20-30 MB of memory. Also at x86_64 the 
&lt;br&gt;&amp;gt; footprint is 25% bigger.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Simple test, an array with empty items:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; $b = array_fill(0, 100000, NULL);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; in-memory size for this array = 10MB!!!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So, if you're working with such big mailboxes, you'll need to increase 
&lt;br&gt;&amp;gt; memory_limit.
&lt;/div&gt;&lt;br&gt;Ok, that's what I expected as soon as I realised that the different
&lt;br&gt;versions were running on different architectures. Thanks for investigating
&lt;br&gt;the problem.
&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Threads---first-commit-tp26337498p26440469.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26440374</id>
	<title>Re: Address book expansion patch, using VCard to store extra info by Phil W.</title>
	<published>2009-11-20T01:18:28Z</published>
	<updated>2009-11-20T01:18:28Z</updated>
	<author>
		<name>A.L.E.C</name>
	</author>
	<content type="html">Roland Liebl wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; The roadmap states that vcard rich contact informations is a milestone 
&lt;br&gt;&amp;gt; for v0.5. But why not to make users happy a little bit earlier?
&lt;br&gt;&lt;br&gt;Currently I'm busy with threads implementation and I'll not work on 
&lt;br&gt;other big feature until I finish. It could be probably not earlier than 
&lt;br&gt;&amp;nbsp; end of this year.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Aleksander 'A.L.E.C' Machniak &lt;a href=&quot;http://alec.pl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://alec.pl&lt;/a&gt;&amp;nbsp;gg:2275252
&lt;br&gt;LAN Management System Developer &lt;a href=&quot;http://lms.org.pl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lms.org.pl&lt;/a&gt;&lt;br&gt;Roundcube Webmail Project Developer &lt;a href=&quot;http://roundcube.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://roundcube.net&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;List info: &lt;a href=&quot;http://lists.roundcube.net/dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.roundcube.net/dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/RoundCube---Development-f25585.html&quot; embed=&quot;fixTarget[25585]&quot; target=&quot;_top&quot; &gt;RoundCube - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Address-book-expansion-patch%2C-using-VCard-to-store-extra-info-by-Phil-W.-tp26440171p26440374.html" />
</entry>

</feed>
