Search found 50 matches

by andrey.ivanov
Thu Oct 20, 2022 10:10 am
Forum: Administrators
Topic: Single mailbox pretty much slow
Replies: 3
Views: 2181

Re: Single mailbox pretty much slow

I had a similar problem - the AJAX web interface did not load for a single user at all or was extremely slow. It was a broken share link (calendar of a person who is no more in zimbra). Here is how to find it: [zimbra@zimbra-mbox2 ~]$ zmsoap -z -m broken.user GetFolderRequest @tr=1| grep broken < li...
by andrey.ivanov
Tue Jun 22, 2021 11:39 am
Forum: Installation and Upgrade
Topic: 8.8.15 >=P20 & Amavis crash
Replies: 3
Views: 5295

Re: 8.8.15 >=P20 & Amavis crash

Could be a problem of self-signed LDAP certificate?
by andrey.ivanov
Fri Nov 15, 2019 10:15 am
Forum: Administrators
Topic: Retrieving messages for the following external account has failed
Replies: 12
Views: 9681

Re: Retrieving messages for the following external account has failed

From the look of the error message it seems like Zimbra code uses java int type to obtain the size of the external mailbox. The int size in java ( java.lang.Integer ) has the range from -2 147 483 648 to 2 147 483 647 corresponding to 2Gb. They should use java.lang.Long for that. If that is the case...
by andrey.ivanov
Fri Oct 18, 2019 11:12 am
Forum: Administrators
Topic: [Resolved]Strange Behavior On An HTML Email (solved w/workaround)
Replies: 5
Views: 5063

Re: Strange Behavior On An HTML Email

The solution is generally disabling the new OWASP validation framework:

Code: Select all

zmlocalconfig -e zimbra_use_owasp_html_sanitizer=false
zmmailboxdctl restart  
by andrey.ivanov
Thu Sep 26, 2019 12:38 pm
Forum: Administrators
Topic: zmspamextract fails to pull emails from junk or ham account
Replies: 37
Views: 45923

Re: zmspamextract fails to pull emails from junk or ham account

Looks like the things are finally set in motion for this bug : here is a new commit 5 hours ago (so far only in devel branch) to fix it: https://github.com/Zimbra/zm-mailbox/co ... 3b36e311ee
So maybe in 8.8.15_P2 or _P3...
by andrey.ivanov
Mon Sep 23, 2019 1:23 pm
Forum: Русский язык-фор
Topic: вложения на русском тексте в standart(html) интерфейсе
Replies: 2
Views: 3234

Re: вложения на русском тексте в standart(html) интерфейсе

Чистый html интерфейс вроде как объявлен устаревшим, так же как и мобильные (Mobile & Touch), там есть масса неисправленных багов. Предлагается пользоваться интерфейсом по умолчанию (Advanced(Ajax))
by andrey.ivanov
Wed Sep 11, 2019 8:43 am
Forum: Administrators
Topic: how to set smtpd_client_connection_count_limit
Replies: 1
Views: 2114

Re: how to set smtpd_client_connection_count_limit

Hi, i usually modify the files /opt/zimbra/common/conf/main.cf and / /opt/zimbra/common/conf/main.cf.default to set smtpd_client_event_limit_exceptions , smtpd_client_connection_rate_limit and smtpd_client_connection_count_limit . You need to do it again after each patch of Zimbra software since the...
by andrey.ivanov
Wed Sep 11, 2019 8:26 am
Forum: Administrators
Topic: Zimbra 8.8.15 HTML Signature Issue
Replies: 2
Views: 2172

Re: Zimbra 8.8.15 HTML Signature Issue

Have you installed patch 1 of 8.8.15 (https://wiki.zimbra.com/wiki/Zimbra_Releases/8.8.15/P1)? If you have installed the patch and it does not resolve your problem then i think it is another manifestation of the bugs related to the new OWASP sanitizer. Try this: zmlocalconfig -e zimbra_use_owasp_htm...
by andrey.ivanov
Tue Aug 20, 2019 9:13 am
Forum: Administrators
Topic: Email URLs and Layout issue after upgrade
Replies: 2
Views: 2323

Re: Email URLs and Layout issue after upgrade

This should fix you problem (the same fix as for 8.8.12_P4) :

Code: Select all

zmlocalconfig -e zimbra_use_owasp_html_sanitizer=FALSE
zmmailboxdctl restart
by andrey.ivanov
Tue Aug 20, 2019 9:10 am
Forum: Administrators
Topic: zmspamextract fails to pull emails from junk or ham account
Replies: 37
Views: 45923

Re: SpamAssassin not learning

The exception is in the com.zimbra.common.httpclient.HttpClientUtil class. It could be a new Zimbra bug related to the major change of version of HttpCLient ("Upgraded 3rd Party HttpClient to version 4.5.5." from https://wiki.zimbra.com/wiki/Zimbra_Releases/8.8.15). There is already a kno...