<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Zimbra - Forums</title>
		<link>http://www.zimbra.com/forums</link>
		<description>Zimbra provides open source server and client software for messaging and collaboration.</description>
		<language>en</language>
		<lastBuildDate>Fri, 20 Nov 2009 21:32:32 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.zimbra.com/forums/images/bullet/misc/rss.jpg</url>
			<title>Zimbra - Forums</title>
			<link>http://www.zimbra.com/forums</link>
		</image>
		<item>
			<title>Briefcase - Admin reverts to View at user side</title>
			<link>http://www.zimbra.com/forums/administrators/35104-briefcase-admin-reverts-view-user-side.html</link>
			<pubDate>Fri, 20 Nov 2009 18:11:08 GMT</pubDate>
			<description><![CDATA[2 users, the owner shares a folder with admin rights to a user. That user accepts the share and has admin rights. Then the user logs out. Once that user returns they show view for the rights on that share on the user side. The owner of the share shows admin in the properties.

Any idea why?

I can't seem to duplicate it using the same owner, but a different user.]]></description>
			<content:encoded><![CDATA[<div>2 users, the owner shares a folder with admin rights to a user. That user accepts the share and has admin rights. Then the user logs out. Once that user returns they show view for the rights on that share on the user side. The owner of the share shows admin in the properties.<br />
<br />
Any idea why?<br />
<br />
I can't seem to duplicate it using the same owner, but a different user.</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/administrators/">Administrators</category>
			<dc:creator>quietas</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/administrators/35104-briefcase-admin-reverts-view-user-side.html</guid>
		</item>
		<item>
			<title>ZCB 5.0.19 HDW recommendation</title>
			<link>http://www.zimbra.com/forums/zimbra-connector-blackberry/35103-zcb-5-0-19-hdw-recommendation.html</link>
			<pubDate>Fri, 20 Nov 2009 17:33:15 GMT</pubDate>
			<description><![CDATA[In the release notes for ZCB 5.0.19 you can find these recommendations:
----------------------------------------------
Hardware Recommendation
Quad Core
16 GB RAM
500+ GB hard drive space
-----------------------------------------------

My 3 ZCB 5.0.18 servers have only 4 GB RAM. Is it OK if I upgrade to 5.0.19?

On my servers I've never seen more than 2.1 GB RAM to be used. Why are these recommendations so high? Thanks.]]></description>
			<content:encoded><![CDATA[<div>In the release notes for ZCB 5.0.19 you can find these recommendations:<br />
----------------------------------------------<br />
Hardware Recommendation<br />
Quad Core<br />
16 GB RAM<br />
500+ GB hard drive space<br />
-----------------------------------------------<br />
<br />
My 3 ZCB 5.0.18 servers have only 4 GB RAM. Is it OK if I upgrade to 5.0.19?<br />
<br />
On my servers I've never seen more than 2.1 GB RAM to be used. Why are these recommendations so high? Thanks.</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/zimbra-connector-blackberry/">Zimbra Connector for BlackBerry</category>
			<dc:creator>rduric</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/zimbra-connector-blackberry/35103-zcb-5-0-19-hdw-recommendation.html</guid>
		</item>
		<item>
			<title>Zimlet to clear AutoComplete cache for user ?</title>
			<link>http://www.zimbra.com/forums/zimlets/35102-zimlet-clear-autocomplete-cache-user.html</link>
			<pubDate>Fri, 20 Nov 2009 17:13:33 GMT</pubDate>
			<description><![CDATA[I havbe an issue (as do many others it seems) where I had to rename the domain name of my server.

Now, for all users who had accounts prior to the domain name changing, if they attempt to write to another user to whom they had written prior to the name change happening - AutoComplete returns two email addresses for the addressee. It returns the new one from the updated GAL and also the cached old address from the old GAL. 

I am now to Zimbra so have no experience with what can and can't be done, and am not a web programmer. However, in looking through some of the code associated with AutoComplete it seems that the file 

//depot/zcs/main/ZimbraWebClient/WebRoot/js/zimbraMail/share/model/ZmAutocomplete.js

has a prototype function for clearing out a user's cache 


ZmAutocomplete.prototype.clearCache =
function(type, account) {
	var acct = account || appCtxt.getActiveAccount();

	if (type) {
		this._acCache[acct.id][type] = {};
	} else {
		this._acCache[acct.id][ZmAutocomplete.AC_TYPE_CONTACT]		=	{};
		this._acCache[acct.id][ZmAutocomplete.AC_TYPE_LOCATION]		=	{};
		this._acCache[acct.id][ZmAutocomplete.AC_TYPE_EQUIPMENT]	=	{};
	}
};


Is this function complete as it stands ? 

And if it is, is there anyone out there that could encapsulate it within a Zimlet ?

Thanks for reading.]]></description>
			<content:encoded><![CDATA[<div>I havbe an issue (as do many others it seems) where I had to rename the domain name of my server.<br />
<br />
Now, for all users who had accounts prior to the domain name changing, if they attempt to write to another user to whom they had written prior to the name change happening - AutoComplete returns two email addresses for the addressee. It returns the new one from the updated GAL and also the cached old address from the old GAL. <br />
<br />
I am now to Zimbra so have no experience with what can and can't be done, and am not a web programmer. However, in looking through some of the code associated with AutoComplete it seems that the file <br />
<br />
//depot/zcs/main/ZimbraWebClient/WebRoot/js/zimbraMail/share/model/ZmAutocomplete.js<br />
<br />
has a prototype function for clearing out a user's cache <br />
<br />
<br />
ZmAutocomplete.prototype.clearCache =<br />
function(type, account) {<br />
	var acct = account || appCtxt.getActiveAccount();<br />
<br />
	if (type) {<br />
		this._acCache[acct.id][type] = {};<br />
	} else {<br />
		this._acCache[acct.id][ZmAutocomplete.AC_TYPE_CONTACT]		=	{};<br />
		this._acCache[acct.id][ZmAutocomplete.AC_TYPE_LOCATION]		=	{};<br />
		this._acCache[acct.id][ZmAutocomplete.AC_TYPE_EQUIPMENT]	=	{};<br />
	}<br />
};<br />
<br />
<br />
Is this function complete as it stands ? <br />
<br />
And if it is, is there anyone out there that could encapsulate it within a Zimlet ?<br />
<br />
Thanks for reading.</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/zimlets/">Zimlets</category>
			<dc:creator>liverpoolfcfan</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/zimlets/35102-zimlet-clear-autocomplete-cache-user.html</guid>
		</item>
		<item>
			<title>Problem with conversation view</title>
			<link>http://www.zimbra.com/forums/users/35101-problem-conversation-view.html</link>
			<pubDate>Fri, 20 Nov 2009 17:08:01 GMT</pubDate>
			<description><![CDATA[Hi Zimbra Community!

I'm having some trouble with the conversation view as it seems to be grouping unrelated emails together. One particular issue I'm having is when another person sends me an email with no subject, it seems to get grouped together with other emails with no subject. Is there anyway to break a single conversation thread in Zimbra? 

Thanks in advance for any help!


Marvin]]></description>
			<content:encoded><![CDATA[<div>Hi Zimbra Community!<br />
<br />
I'm having some trouble with the conversation view as it seems to be grouping unrelated emails together. One particular issue I'm having is when another person sends me an email with no subject, it seems to get grouped together with other emails with no subject. Is there anyway to break a single conversation thread in Zimbra? <br />
<br />
Thanks in advance for any help!<br />
<br />
<br />
Marvin</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/users/">Users</category>
			<dc:creator>m3chen</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/users/35101-problem-conversation-view.html</guid>
		</item>
		<item>
			<title>Server is slow,Deleted users still in GAL,Low disk space in Admin GUI</title>
			<link>http://www.zimbra.com/forums/administrators/35098-server-slow-deleted-users-still-gal-low-disk-space-admin-gui.html</link>
			<pubDate>Fri, 20 Nov 2009 15:49:14 GMT</pubDate>
			<description>Iam new to this so any help will be greatly appreciated. 
I am using Release 5.0.1_GA_1902.UBUNTU6 UBUNTU6 FOSS edition
I have approximately 250 users and recently been getting users complaining that the server reports it is slow cancel request. The network is all on 1 gig ethernet LAN and the server is a good HP Proliant with 10 hot swappable hard drives with 164gig each. Will the latest update 5.0.20 fix some or all my issues? Also please can you tell me how and when to update to the latest update. I was also reading that you can run a script optimizeMboxgroups.pl . Where do I get this script from?  
I deleted users in the admin console but their aliases are still in the GAL. How do I delete these aliases.
On my Admin Gui it shows with very little disk space but on CLI it has says 35% is free. Even after me deleting some 20 users it shows the same in Gui and CLI. 
Thanks for any help</description>
			<content:encoded><![CDATA[<div>Iam new to this so any help will be greatly appreciated. <br />
I am using Release 5.0.1_GA_1902.UBUNTU6 UBUNTU6 FOSS edition<br />
I have approximately 250 users and recently been getting users complaining that the server reports it is slow cancel request. The network is all on 1 gig ethernet LAN and the server is a good HP Proliant with 10 hot swappable hard drives with 164gig each. Will the latest update 5.0.20 fix some or all my issues? Also please can you tell me how and when to update to the latest update. I was also reading that you can run a script optimizeMboxgroups.pl . Where do I get this script from?  <br />
I deleted users in the admin console but their aliases are still in the GAL. How do I delete these aliases.<br />
On my Admin Gui it shows with very little disk space but on CLI it has says 35% is free. Even after me deleting some 20 users it shows the same in Gui and CLI. <br />
Thanks for any help</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/administrators/">Administrators</category>
			<dc:creator>chacetech</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/administrators/35098-server-slow-deleted-users-still-gal-low-disk-space-admin-gui.html</guid>
		</item>
		<item>
			<title><![CDATA[Display issues & user level login restriction by IP]]></title>
			<link>http://www.zimbra.com/forums/administrators/35097-display-issues-user-level-login-restriction-ip.html</link>
			<pubDate>Fri, 20 Nov 2009 14:45:11 GMT</pubDate>
			<description><![CDATA[Hi All,

We are considering a large deployment of Zimbra Open Source version, which in initial testing has proved great. We would be very grateful for solutions/advice on the issues below:

*1) Email time:*

The emails&#8217;s arrival time is not displayed if the email is more tha 1 day old, instead only the date is shown. Many of our users recive 100+ emails per day. If a customer calls and refers to an email &#8220;sent yesterday at 3pm&#8221; then its going to be hard to find without a time reference.

I find Email time is an essential reference when scrolling through the email list to maintain orientation. Is there a way to turn this on for all emails?

*2) Issues with email list when using &#8220;Reading Pane On The Right&#8221; view.*

-  is there an option to make each email occupy only one line rather than two in the email list. There is more than enough space when the email content snippet is turned off (outlook 2007 right pane layout is good in this respect). This would save on user scrolling, and make maximum use of the the screen space (which is the aim of the right pane view)

-  the email&#8217;s size seems to be omited from columns of email list.

*3) issue with attachment symbol:*

In email list, attachment symbol always shows when email received from Outlook client which contains and html image tag with extermal source, e.g. a companies logo image, while there's actually no real attachment for that email. Is this a bug?

*4) User login restriction by IP address:*

- is it possible to define a list of permissible IP addresses for login. I know this can be done by apache directives but I was hoping this could be defined at group level or user level.

I'm new here so please remind me if I should put any of these questions in a single thread or go to bug report.

Many thanks for your help!

Robert]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
We are considering a large deployment of Zimbra Open Source version, which in initial testing has proved great. We would be very grateful for solutions/advice on the issues below:<br />
<br />
<b>1) Email time:</b><br />
<br />
The emails&#8217;s arrival time is not displayed if the email is more tha 1 day old, instead only the date is shown. Many of our users recive 100+ emails per day. If a customer calls and refers to an email &#8220;sent yesterday at 3pm&#8221; then its going to be hard to find without a time reference.<br />
<br />
I find Email time is an essential reference when scrolling through the email list to maintain orientation. Is there a way to turn this on for all emails?<br />
<br />
<b>2) Issues with email list when using &#8220;Reading Pane On The Right&#8221; view.</b><br />
<br />
-  is there an option to make each email occupy only one line rather than two in the email list. There is more than enough space when the email content snippet is turned off (outlook 2007 right pane layout is good in this respect). This would save on user scrolling, and make maximum use of the the screen space (which is the aim of the right pane view)<br />
<br />
-  the email&#8217;s size seems to be omited from columns of email list.<br />
<br />
<b>3) issue with attachment symbol:</b><br />
<br />
In email list, attachment symbol always shows when email received from Outlook client which contains and html image tag with extermal source, e.g. a companies logo image, while there's actually no real attachment for that email. Is this a bug?<br />
<br />
<b>4) User login restriction by IP address:</b><br />
<br />
- is it possible to define a list of permissible IP addresses for login. I know this can be done by apache directives but I was hoping this could be defined at group level or user level.<br />
<br />
I'm new here so please remind me if I should put any of these questions in a single thread or go to bug report.<br />
<br />
Many thanks for your help!<br />
<br />
Robert</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/administrators/">Administrators</category>
			<dc:creator>debo</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/administrators/35097-display-issues-user-level-login-restriction-ip.html</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Zimbra 6.x migration from OpenSource to Network Edition Issues]]></title>
			<link>http://www.zimbra.com/forums/installation/35096-solved-zimbra-6-x-migration-opensource-network-edition-issues.html</link>
			<pubDate>Fri, 20 Nov 2009 14:40:06 GMT</pubDate>
			<description><![CDATA[All,

I have performed all the steps included in Network Edition Moving from Open Source to Network Edition ZCS - Zimbra :: Wiki (http://wiki.zimbra.com/index.php?title=Network_Edition_Moving_from_Open_Source_to_Network_Edition_ZCS) on moving to the network version.  Luckily, this was a 3 day old installation so there wasnt TOO much to have to migrate over.  I've had to perform some steps outside of the scope of this document to get it to function properly.  Ldap migrated successfully, my certificates migrated successfully, all the user accounts are over and passwords.  The spam/ham account are identical to the old server.

Now on to the problems...

I log into webmail, and I received the message "Your server's license has expired"  Its a brand new license (trial) so I am not sure as to why this error is popping up.  Also, in transering the /opt/zimbra/{store,index} directories all my users cannot see their old mail.  I checked the perms on the directory and they are as followed:

[zimbra@ghostrider ~]$ ls -l |egrep "store|index"
drwxr-xr-x  3 zimbra zimbra 4096 Nov 19 21:00 index
drwxr-xr-x  3 zimbra zimbra 4096 Nov 19 20:35 index.orig
drwxr-xr-x  4 zimbra zimbra 4096 Nov 19 20:53 store
drwxr-xr-x  4 zimbra zimbra 4096 Nov 19 20:35 store.orig

What do I need to do to ensure all the messages are imported into the new system.

Thanks for all the help,

JB]]></description>
			<content:encoded><![CDATA[<div>All,<br />
<br />
I have performed all the steps included in <a href="http://wiki.zimbra.com/index.php?title=Network_Edition_Moving_from_Open_Source_to_Network_Edition_ZCS" target="_blank">Network Edition Moving from Open Source to Network Edition ZCS - Zimbra :: Wiki</a> on moving to the network version.  Luckily, this was a 3 day old installation so there wasnt TOO much to have to migrate over.  I've had to perform some steps outside of the scope of this document to get it to function properly.  Ldap migrated successfully, my certificates migrated successfully, all the user accounts are over and passwords.  The spam/ham account are identical to the old server.<br />
<br />
Now on to the problems...<br />
<br />
I log into webmail, and I received the message "Your server's license has expired"  Its a brand new license (trial) so I am not sure as to why this error is popping up.  Also, in transering the /opt/zimbra/{store,index} directories all my users cannot see their old mail.  I checked the perms on the directory and they are as followed:<br />
<br />
[zimbra@ghostrider ~]$ ls -l |egrep "store|index"<br />
drwxr-xr-x  3 zimbra zimbra 4096 Nov 19 21:00 index<br />
drwxr-xr-x  3 zimbra zimbra 4096 Nov 19 20:35 index.orig<br />
drwxr-xr-x  4 zimbra zimbra 4096 Nov 19 20:53 store<br />
drwxr-xr-x  4 zimbra zimbra 4096 Nov 19 20:35 store.orig<br />
<br />
What do I need to do to ensure all the messages are imported into the new system.<br />
<br />
Thanks for all the help,<br />
<br />
JB</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/installation/">Installation</category>
			<dc:creator>electro93</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/installation/35096-solved-zimbra-6-x-migration-opensource-network-edition-issues.html</guid>
		</item>
		<item>
			<title>imapsync Cleartext error</title>
			<link>http://www.zimbra.com/forums/migration/35093-imapsync-cleartext-error.html</link>
			<pubDate>Fri, 20 Nov 2009 12:55:19 GMT</pubDate>
			<description><![CDATA[I know clear text has been enabled but still getting the error.

Error login : [zimbra.xxxx.xxx] with user [kawalec@host1.org] auth [LOGIN]: 3 NO cleartext logins disabled

3 NO cleartext logins disabled
        ...propagated at /usr/bin/imapsync line 676.

Here is the command i am running.

imapsync --buffersize 8192000 --nosyncacls --subscribe --syncinternaldates --host1 zimbra.host1.org --user1 kawalec@xxxxxxx1.org --password1 Pass --host2 new.host2.org --user2 kawalec@host2.org --password2 Pass  --noauthmd5

Thanks
Tom]]></description>
			<content:encoded><![CDATA[<div>I know clear text has been enabled but still getting the error.<br />
<br />
Error login : [zimbra.xxxx.xxx] with user [kawalec@host1.org] auth [LOGIN]: 3 NO cleartext logins disabled<br />
<br />
3 NO cleartext logins disabled<br />
        ...propagated at /usr/bin/imapsync line 676.<br />
<br />
Here is the command i am running.<br />
<br />
imapsync --buffersize 8192000 --nosyncacls --subscribe --syncinternaldates --host1 zimbra.host1.org --user1 <a href="mailto:kawalec@xxxxxxx1.org">kawalec@xxxxxxx1.org</a> --password1 Pass --host2 new.host2.org --user2 <a href="mailto:kawalec@host2.org">kawalec@host2.org</a> --password2 Pass  --noauthmd5<br />
<br />
Thanks<br />
Tom</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/migration/">Migration</category>
			<dc:creator>mclain</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/migration/35093-imapsync-cleartext-error.html</guid>
		</item>
		<item>
			<title>Zimbra account status</title>
			<link>http://www.zimbra.com/forums/administrators/35092-zimbra-account-status.html</link>
			<pubDate>Fri, 20 Nov 2009 12:26:06 GMT</pubDate>
			<description>Hi Guys,


Is there any way to find out number of count of Active, lockout and deactivated accounts per domain ??? 

Please help. 


Thanks</description>
			<content:encoded><![CDATA[<div>Hi Guys,<br />
<br />
<br />
Is there any way to find out number of count of Active, lockout and deactivated accounts per domain ??? <br />
<br />
Please help. <br />
<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/administrators/">Administrators</category>
			<dc:creator>chandu</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/administrators/35092-zimbra-account-status.html</guid>
		</item>
		<item>
			<title><![CDATA[Remove "Remember me"]]></title>
			<link>http://www.zimbra.com/forums/administrators/35091-remove-remember-me.html</link>
			<pubDate>Fri, 20 Nov 2009 12:21:39 GMT</pubDate>
			<description><![CDATA[Hello!

I would like to remove the "Remember me" option in the login screen.
Is that possible?

I also want to remove the option to change from HTML to AJAX. 

Thanks!!]]></description>
			<content:encoded><![CDATA[<div>Hello!<br />
<br />
I would like to remove the &quot;Remember me&quot; option in the login screen.<br />
Is that possible?<br />
<br />
I also want to remove the option to change from HTML to AJAX. <br />
<br />
Thanks!!</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/administrators/">Administrators</category>
			<dc:creator>Bagualas</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/administrators/35091-remove-remember-me.html</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Can't see content when sharing the entirety of an account]]></title>
			<link>http://www.zimbra.com/forums/administrators/35090-solved-can-t-see-content-when-sharing-entirety-account.html</link>
			<pubDate>Fri, 20 Nov 2009 11:59:01 GMT</pubDate>
			<description><![CDATA[Hello,

I followed this guide: 

Zmmailbox - Zimbra :: Wiki (http://wiki.zimbra.com/index.php?title=Zmmailbox)

Apparently everything works out nice, but I have one serious problem:
Even though I can see in the folder-tree to the left that there are unread messages in the shared mailbox, I see nothing in the right side of Zimbra, where all the messages are listed. It just reports: *No results found*.

Anyone had any expreience with this? -And found a solution?

Thank you in advance for any help or response! :)

Edit1: I've done some further research on this issue, and it turns out I can se the messages in Standard View, but not in Advanced View.
Edit2: After further research I discovered the problem is related to the (old, from Zimbra 5) Norwegian translation. When using the English (US) Interface, everything works perfect. I guess I have some work to do...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I followed this guide: <br />
<br />
<a href="http://wiki.zimbra.com/index.php?title=Zmmailbox" target="_blank">Zmmailbox - Zimbra :: Wiki</a><br />
<br />
Apparently everything works out nice, but I have one serious problem:<br />
Even though I can see in the folder-tree to the left that there are unread messages in the shared mailbox, I see nothing in the right side of Zimbra, where all the messages are listed. It just reports: <b>No results found</b>.<br />
<br />
Anyone had any expreience with this? -And found a solution?<br />
<br />
Thank you in advance for any help or response! :)<br />
<br />
Edit1: I've done some further research on this issue, and it turns out I can se the messages in Standard View, but not in Advanced View.<br />
Edit2: After further research I discovered the problem is related to the (old, from Zimbra 5) Norwegian translation. When using the English (US) Interface, everything works perfect. I guess I have some work to do...</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/administrators/">Administrators</category>
			<dc:creator>primaxx</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/administrators/35090-solved-can-t-see-content-when-sharing-entirety-account.html</guid>
		</item>
		<item>
			<title>Error zcs-6.0.2 on Fedora 10</title>
			<link>http://www.zimbra.com/forums/installation/35089-error-zcs-6-0-2-fedora-10-a.html</link>
			<pubDate>Fri, 20 Nov 2009 11:57:46 GMT</pubDate>
			<description>At installation zcs-6.0.2_GA_1912.F11.20091020155433.tgz on fedora 10 there is a following error:
Starting spell... Failed.
Starting apache.../opt/zimbra/httpd-2.2.11/bin/httpd: symbol lookup error:/opt/zimbra/httpd-2.2.11/lib/libapr-1.so.0: undefined symbol: dlopen
failed.

How it is possible to correct this error?

zmcontrol status
Host mail.dkls.ru
	antispam                Running
	antivirus               Running
	ldap                    Running
	logger                  Running
	mailbox                 Running
	mta                     Running
	snmp                    Running
	spell                   Stopped
		zmapachectl is not running
	stats                   Running

zmcontrol stop
Host mail.dkls.ru
	Stopping stats...Done.
	Stopping mta...Done.
	Stopping spell...Done.
	Stopping snmp...Done.
	Stopping archiving...Done.
	Stopping antivirus...Done.
	Stopping antispam...Done.
	Stopping imapproxy...Done.
	Stopping memcached...Done.
	Stopping mailbox...Done.
	Stopping logger...Done.
	Stopping ldap...Done.

zmcontrol start
Host mail.dkls.ru
	Starting ldap...Done.
	Starting logger...Done.
	Starting mailbox...Done.
	Starting antispam...Done.
	Starting antivirus...Done.
	Starting snmp...Done.
	Starting spell...Failed.
Starting apache.../opt/zimbra/httpd-2.2.11/bin/httpd: symbol lookup error: /opt/zimbra/httpd-2.2.11/lib/libapr-1.so.0: undefined symbol: dlopen
failed.


	Starting mta...Done.
	Starting stats...Done.

In the rest all works well</description>
			<content:encoded><![CDATA[<div>At installation zcs-6.0.2_GA_1912.F11.20091020155433.tgz on fedora 10 there is a following error:<br />
Starting spell... Failed.<br />
Starting apache.../opt/zimbra/httpd-2.2.11/bin/httpd: symbol lookup error:/opt/zimbra/httpd-2.2.11/lib/libapr-1.so.0: undefined symbol: dlopen<br />
failed.<br />
<br />
How it is possible to correct this error?<br />
<br />
zmcontrol status<br />
Host mail.dkls.ru<br />
	antispam                Running<br />
	antivirus               Running<br />
	ldap                    Running<br />
	logger                  Running<br />
	mailbox                 Running<br />
	mta                     Running<br />
	snmp                    Running<br />
	spell                   Stopped<br />
		zmapachectl is not running<br />
	stats                   Running<br />
<br />
zmcontrol stop<br />
Host mail.dkls.ru<br />
	Stopping stats...Done.<br />
	Stopping mta...Done.<br />
	Stopping spell...Done.<br />
	Stopping snmp...Done.<br />
	Stopping archiving...Done.<br />
	Stopping antivirus...Done.<br />
	Stopping antispam...Done.<br />
	Stopping imapproxy...Done.<br />
	Stopping memcached...Done.<br />
	Stopping mailbox...Done.<br />
	Stopping logger...Done.<br />
	Stopping ldap...Done.<br />
<br />
zmcontrol start<br />
Host mail.dkls.ru<br />
	Starting ldap...Done.<br />
	Starting logger...Done.<br />
	Starting mailbox...Done.<br />
	Starting antispam...Done.<br />
	Starting antivirus...Done.<br />
	Starting snmp...Done.<br />
	Starting spell...Failed.<br />
Starting apache.../opt/zimbra/httpd-2.2.11/bin/httpd: symbol lookup error: /opt/zimbra/httpd-2.2.11/lib/libapr-1.so.0: undefined symbol: dlopen<br />
failed.<br />
<br />
<br />
	Starting mta...Done.<br />
	Starting stats...Done.<br />
<br />
In the rest all works well</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/installation/">Installation</category>
			<dc:creator>Alex_Saf</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/installation/35089-error-zcs-6-0-2-fedora-10-a.html</guid>
		</item>
		<item>
			<title>Hardware recommendations for large installations</title>
			<link>http://www.zimbra.com/forums/installation/35088-hardware-recommendations-large-installations.html</link>
			<pubDate>Fri, 20 Nov 2009 11:51:46 GMT</pubDate>
			<description>Hello
Assuming that we need to make a new ZCS installation for 50000 users, what hardware configuration would you recommend?

How many servers would you suggest to handle mailboxes and how many to handle MTA/LDAP?</description>
			<content:encoded><![CDATA[<div>Hello<br />
Assuming that we need to make a new ZCS installation for 50000 users, what hardware configuration would you recommend?<br />
<br />
How many servers would you suggest to handle mailboxes and how many to handle MTA/LDAP?</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/installation/">Installation</category>
			<dc:creator>FullMetalAlchemist</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/installation/35088-hardware-recommendations-large-installations.html</guid>
		</item>
		<item>
			<title>Mail temporary deferred after zimbra migration</title>
			<link>http://www.zimbra.com/forums/administrators/35087-mail-temporary-deferred-after-zimbra-migration.html</link>
			<pubDate>Fri, 20 Nov 2009 11:08:17 GMT</pubDate>
			<description><![CDATA[Hi all,

i must migrate from an older server to newer, this server isn't into a lan (have a public ip on eth0) and serves several services (web, dns, mail, ecc ecc)
we are speaking about a debian lenny server (both of them)
i did the following:

install zcs on the new server
copy the entire /opt/zimbra from the older to the newer
run again setup.sh to perform the upgrade.

Everything seems work fine but the local delivery fails with ALL of the incoming emails:

Nov 20 11:52:54 kratos postfix/lmtp[29541]: 6859B165B338: to=<admin@ilportalinux.it>, relay=mail.ilportalinux.it[188.72.199.31]:7025, delay=44570, delays=44570/0.34/0/0.05, dsn=4.0.0, status=deferred (host mail.ilportalinux.it[188.72.199.31] said: 451 4.0.0 Temporary message delivery failure try again (in reply to end of DATA command))

"mail.ilportalinux.it" is being resolved correctly, no logs on mailboxd.log, no mails delivered, nothing changed between the older server and the newer, also in the older server all is working perfectly.

I can telnet successfully to the 7025 even using FQDN, public ip address and local loopback ip address. No firewall installed.

Please someone could help me?]]></description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
i must migrate from an older server to newer, this server isn't into a lan (have a public ip on eth0) and serves several services (web, dns, mail, ecc ecc)<br />
we are speaking about a debian lenny server (both of them)<br />
i did the following:<br />
<br />
install zcs on the new server<br />
copy the entire /opt/zimbra from the older to the newer<br />
run again setup.sh to perform the upgrade.<br />
<br />
Everything seems work fine but the local delivery fails with ALL of the incoming emails:<br />
<br />
Nov 20 11:52:54 kratos postfix/lmtp[29541]: 6859B165B338: to=&lt;admin@ilportalinux.it&gt;, relay=mail.ilportalinux.it[188.72.199.31]:7025, delay=44570, delays=44570/0.34/0/0.05, dsn=4.0.0, status=deferred (host mail.ilportalinux.it[188.72.199.31] said: 451 4.0.0 Temporary message delivery failure try again (in reply to end of DATA command))<br />
<br />
&quot;mail.ilportalinux.it&quot; is being resolved correctly, no logs on mailboxd.log, no mails delivered, nothing changed between the older server and the newer, also in the older server all is working perfectly.<br />
<br />
I can telnet successfully to the 7025 even using FQDN, public ip address and local loopback ip address. No firewall installed.<br />
<br />
Please someone could help me?</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/administrators/">Administrators</category>
			<dc:creator>M0rF3uS</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/administrators/35087-mail-temporary-deferred-after-zimbra-migration.html</guid>
		</item>
		<item>
			<title>zmstat-chart java.lang.OutOfMemoryError</title>
			<link>http://www.zimbra.com/forums/administrators/35086-zmstat-chart-java-lang-outofmemoryerror.html</link>
			<pubDate>Fri, 20 Nov 2009 11:06:07 GMT</pubDate>
			<description><![CDATA[I would like to generate advanced statistics with zmstat-chart. But the zmstat-chart utility abort operations at Reading CSV allprocs.csv with the following error.

Code:
---------
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
        at java.util.Arrays.copyOf(Arrays.java:2734)
        at java.util.ArrayList.ensureCapacity(ArrayList.java:167)
        at java.util.ArrayList.add(ArrayList.java:351)
        at java.util.regex.Pattern.split(Pattern.java:1003)
        at java.util.regex.Pattern.split(Pattern.java:1059)
        at com.zimbra.common.util.CsvReader.hasNext(CsvReader.java:66)
        at com.zimbra.perf.chart.ChartUtil.readCsvFiles(ChartUtil.java:856)
        at com.zimbra.perf.chart.ChartUtil.doit(ChartUtil.java:342)
        at com.zimbra.perf.chart.ChartUtil.main(ChartUtil.java:308)
---------
After some research, I have added -XX:-UseGCOverheadLimit to /opt/zimbra/bin/zmstat-chart at the exec line. Then zmstat-chart ends up with the same error, again at Reading CSV allprocs.csv, but it takes more time to run, of course.

Thanks in advance
jummo]]></description>
			<content:encoded><![CDATA[<div>I would like to generate advanced statistics with <i>zmstat-chart</i>. But the <i>zmstat-chart</i> utility abort operations at <i>Reading CSV allprocs.csv</i> with the following error.<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Exception in thread &quot;main&quot; java.lang.OutOfMemoryError: Java heap space<br />
&nbsp; &nbsp; &nbsp; &nbsp; at java.util.Arrays.copyOf(Arrays.java:2734)<br />
&nbsp; &nbsp; &nbsp; &nbsp; at java.util.ArrayList.ensureCapacity(ArrayList.java:167)<br />
&nbsp; &nbsp; &nbsp; &nbsp; at java.util.ArrayList.add(ArrayList.java:351)<br />
&nbsp; &nbsp; &nbsp; &nbsp; at java.util.regex.Pattern.split(Pattern.java:1003)<br />
&nbsp; &nbsp; &nbsp; &nbsp; at java.util.regex.Pattern.split(Pattern.java:1059)<br />
&nbsp; &nbsp; &nbsp; &nbsp; at com.zimbra.common.util.CsvReader.hasNext(CsvReader.java:66)<br />
&nbsp; &nbsp; &nbsp; &nbsp; at com.zimbra.perf.chart.ChartUtil.readCsvFiles(ChartUtil.java:856)<br />
&nbsp; &nbsp; &nbsp; &nbsp; at com.zimbra.perf.chart.ChartUtil.doit(ChartUtil.java:342)<br />
&nbsp; &nbsp; &nbsp; &nbsp; at com.zimbra.perf.chart.ChartUtil.main(ChartUtil.java:308)</code><hr />
</div>After some research, I have added <i>-XX:-UseGCOverheadLimit</i> to <i>/opt/zimbra/bin/zmstat-chart</i> at the <i>exec</i> line. Then <i>zmstat-chart</i> ends up with the same error, again at <i>Reading CSV allprocs.csv</i>, but it takes more time to run, of course.<br />
<br />
Thanks in advance<br />
jummo</div>

]]></content:encoded>
			<category domain="http://www.zimbra.com/forums/administrators/">Administrators</category>
			<dc:creator>jummo</dc:creator>
			<guid isPermaLink="true">http://www.zimbra.com/forums/administrators/35086-zmstat-chart-java-lang-outofmemoryerror.html</guid>
		</item>
	</channel>
</rss>
<!-- www4.zimbra.mail.ac4.yahoo.net uncompressed/chunked Fri Nov 20 13:57:58 PST 2009 -->
