Current issues in ZCS 8.5: Difference between revisions

mNo edit summary
Line 16: Line 16:
* ZCS 8.5 Patch 2 is being developed and is planned for release in a couple weeks, once ready.
* ZCS 8.5 Patch 2 is being developed and is planned for release in a couple weeks, once ready.


== [https://bugzilla.zimbra.com/show_bug.cgi?id=95315 Bug 95315] ==
== [https://bugzilla.zimbra.com/show_bug.cgi?id=95315 Bug 95315] '''zimbraReverseProxySSLToUpstreamEnabled is not honored for login & ews urls'''==


'''zimbraReverseProxySSLToUpstreamEnabled is not honored for login & ews urls'''
Connections from proxy to mailbox are always sent over https regardless of zimbraReverseProxySSLToUpstreamEnabled setting. In case your mailstore's are configured to listen only on http, then users will get 502 errors.  
 
Connections from proxy to mailbox are always sent over https regardless of zimbraReverseProxySSLToUpstreamEnabled setting. In case your mailstore's are configured to listen only on http, then users will get 502 errors.  


*'''Workaround'''
*'''Workaround'''
Line 26: Line 24:
Set zimbraMailMode to "both" on mailstores.
Set zimbraMailMode to "both" on mailstores.


== [https://bugzilla.zimbra.com/show_bug.cgi?id=95319 Bug 95319] ==
== [https://bugzilla.zimbra.com/show_bug.cgi?id=95319 Bug 95319] '''Domain certificates configuration not added to nginx'''==
 


'''Domain certificates configuration not added to nginx'''
Configuring domain level certificates using [https://wiki.zimbra.com/wiki/SSL_certificates_per_domain this] wiki, does not works, due to required nginx include/template files are removed. This also applies to upgrades.
Configuring domain level certificates using [https://wiki.zimbra.com/wiki/SSL_certificates_per_domain this] wiki, does not works, due to required nginx include/template files are removed. This also applies to upgrades.


Line 51: Line 47:
It is considered that above listed file exists and it contains valid domain level configuration. Those can be pre-upgrade file.
It is considered that above listed file exists and it contains valid domain level configuration. Those can be pre-upgrade file.


== [https://bugzilla.zimbra.com/show_bug.cgi?id=95302 Bug 95302] ==
== [https://bugzilla.zimbra.com/show_bug.cgi?id=95302 Bug 95302] '''System account for spam/non-spam training should disable spam check'''==
 
 
'''System account for spam/non-spam training should disable spam check'''


Spam check is enabled for spam/non-spam accounts. This causes any spam/non-spam marked emails to get filed into Junk folder of spam/ham accounts. zmtrainsa extracts messages from Inbox only of spam/ham accounts, resulting in no training of emails in Junk folder.  
Spam check is enabled for spam/non-spam accounts. This causes any spam/non-spam marked emails to get filed into Junk folder of spam/ham accounts. zmtrainsa extracts messages from Inbox only of spam/ham accounts, resulting in no training of emails in Junk folder.  
Line 70: Line 63:
     %%comment VAR:!zimbraAmavisOriginatingBypassSA%%bypass_spam_checks_maps  => [1], # don't spam-check internal mail if desired:
     %%comment VAR:!zimbraAmavisOriginatingBypassSA%%bypass_spam_checks_maps  => [1], # don't spam-check internal mail if desired:


== [https://bugzilla.zimbra.com/show_bug.cgi?id=95450 Bug 95450] ==
== [https://bugzilla.zimbra.com/show_bug.cgi?id=95450 Bug 95450] '''Generate CSR fields are not added to CSR'''==


'''Generate CSR fields are not added to CSR'''


Generating CSR from admin console, fields "C=, ST=, L=, O=, OU=" are not added to the CSR. Generated CSR always contains these values.  
Generating CSR from admin console, fields "C=, ST=, L=, O=, OU=" are not added to the CSR. Generated CSR always contains these values.  
Line 83: Line 74:
Use CLI "/opt/zimbra/bin/zmcertmgr createcsr".
Use CLI "/opt/zimbra/bin/zmcertmgr createcsr".


== [https://bugzilla.zimbra.com/show_bug.cgi?id=95265 Bug 95265] ==
== [https://bugzilla.zimbra.com/show_bug.cgi?id=95265 Bug 95265] '''Webapp services removed when editing server'''==
 
'''Webapp services removed when editing server'''


This is fixed in patch1 and in the build 3042.
This is fixed in patch1 and in the build 3042.


== [https://bugzilla.zimbra.com/show_bug.cgi?id=95356 Bug 95356] ==
== [https://bugzilla.zimbra.com/show_bug.cgi?id=95356 Bug 95356] '''Device not syncing post upgrade to 8.5'''==
 
'''Device not syncing post upgrade to 8.5'''


ActiveSync issues with the BlackBerry devices and few Android devices, post upgrade to v8.5.
ActiveSync issues with the BlackBerry devices and few Android devices, post upgrade to v8.5.
Line 99: Line 86:
Re-provision the devices.
Re-provision the devices.


== [https://bugzilla.zimbra.com/show_bug.cgi?id=95204 Bug 95204] ==
== [https://bugzilla.zimbra.com/show_bug.cgi?id=95204 Bug 95204] '''zmconfigd needs dualstack support'''==


* '''Problem:''' zmconfigd not starting with this error:  
* '''Problem:''' zmconfigd not starting with this error:  

Revision as of 14:56, 23 January 2015

Current (Known) Issues in ZCS 8.5 Build 3040

Chronology

Bug 95315 zimbraReverseProxySSLToUpstreamEnabled is not honored for login & ews urls

Connections from proxy to mailbox are always sent over https regardless of zimbraReverseProxySSLToUpstreamEnabled setting. In case your mailstore's are configured to listen only on http, then users will get 502 errors. 
  • Workaround

Set zimbraMailMode to "both" on mailstores.

Bug 95319 Domain certificates configuration not added to nginx

Configuring domain level certificates using this wiki, does not works, due to required nginx include/template files are removed. This also applies to upgrades.

  • Workaround for web proxy certificate

In the file /opt/zimbra/conf/nginx/templates/nginx.conf.web.template , add following line in the final include section.

   include /opt/zimbra/conf/nginx/includes/nginx.conf.web.https;

It is considered that /opt/zimbra/conf/nginx/includes/nginx.conf.web.https file exists and it contains valid domain level configuration. It can be pre-upgrade file.

  • Workaround for mail proxy certificate

In the file /opt/zimbra/conf/nginx/templates/nginx.conf.mail.template , add following lines in the final include section.

   include /opt/zimbra/conf/nginx/includes/nginx.conf.mail.imap;
   include /opt/zimbra/conf/nginx/includes/nginx.conf.mail.imaps;
   include /opt/zimbra/conf/nginx/includes/nginx.conf.mail.pop3;
   include /opt/zimbra/conf/nginx/includes/nginx.conf.mail.pop3s;

It is considered that above listed file exists and it contains valid domain level configuration. Those can be pre-upgrade file.

Bug 95302 System account for spam/non-spam training should disable spam check

Spam check is enabled for spam/non-spam accounts. This causes any spam/non-spam marked emails to get filed into Junk folder of spam/ham accounts. zmtrainsa extracts messages from Inbox only of spam/ham accounts, resulting in no training of emails in Junk folder.

  • Workaround

On the MTA, as the ZIMBRA user:

   cd /opt/zimbra/conf 

edit amavisd.conf.in

REPLACE line 116 with:

   %%comment VAR:!zimbraAmavisOriginatingBypassSA%%bypass_spam_checks_maps   => [1], # don't spam-check internal mail if desired:

Bug 95450 Generate CSR fields are not added to CSR

Generating CSR from admin console, fields "C=, ST=, L=, O=, OU=" are not added to the CSR. Generated CSR always contains these values.

    C=US, ST=N/A, L=N/A, O=Zimbra Collaboration Server, OU=Zimbra Collaboration Server
  • Workaround

Use CLI "/opt/zimbra/bin/zmcertmgr createcsr".

Bug 95265 Webapp services removed when editing server

This is fixed in patch1 and in the build 3042.

Bug 95356 Device not syncing post upgrade to 8.5

ActiveSync issues with the BlackBerry devices and few Android devices, post upgrade to v8.5.

  • Workaround

Re-provision the devices.

Bug 95204 zmconfigd needs dualstack support

  • Problem: zmconfigd not starting with this error:
Starting zmconfigd.../opt/zimbra/bin/zmconfigdctl: line 94: 17418 Killed

Please check if your /etc/hosts file has a line for both "127.0.0.1" and "::1", and if so and you're not using IPv6, please comment out the "::1" line and try again.

Postconf all keys.

Handy to know all postfix config keys that are added in 8.5. In some cases, postix LC keys are not being applied to postfix, because those are moved to ldap database. This list will help to know those keys.

https://wiki.zimbra.com/wiki/Postconf_keys

Voice extensions no longer available

Both the voice zimlets are no longer available in 8.5. Please see -

Bug 82346 - Define list of supported zimlets for 8.5
Bug 93620 - Reinstate voice extensions and zimlets removed from 8.5.0 GA 
Bug 95638 - Document removal of voice zimlets in 8.5

Bug 97213 IE can not be set to compatibility mode for Adv/Ajax ZWC

IE can not be set for compatibility mode when it interacts with ZCS 8.6 . Various signs of this are - warning about using an 'unsupported browser', blank emails when viewed or forwarded, login goes to the mobile or html/basic interface.

Bug 96123 User wants to be able to use "/" and quotes in task titles

User will be warned that task names can not have :

You'll get a pop-up box: Cannot save. you have errors that must be corrected: The subject cannot contain / (forward slash). "(double quote), or :(colon)

Tasks that were created in older ZCS versions that used those characters will prompt with that warning and force the user to rename when they are accessed in ZCS 8.6 .

Archive And Crossmailbox Search Related Issues

These were filed against ZCS 8.6 testing.

Jump to: navigation, search