Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: Zimbra/zm-mailbox
base: 8.8.15.p7
Choose a base ref
head repository: Zimbra/zm-mailbox
compare: 8.8.15.p8
Choose a head ref
  • 5 commits
  • 14 files changed
  • 5 contributors

Commits on Feb 24, 2020

  1. Fix sync issues with external accounts > 4GiB

    In ZCS 8.8.15_GA_3869, external accounts that are larger than 4 GiB fail to
    sync because a database query returns a number that does not fit into an
    integer, but getDataSourceUsage() attempts to call ResultSet.getInt() on it.
    
    This raises an SQLException, which gets eventually converted into a message
    similar to the following, which ends up being displayed to the user:
    
    | Error: system failure: Folder sync failed, system failure:
    | Synchronization of folder '/DATASOURCE/Inbox' failed, system failure:
    | UID FETCH failed: com.zimbra.cs.mailclient.CommandFailedException: UID
    | FETCH failed: Error in response, UID FETCH failed: Error in response,
    | Exception in response handler, system failure: Unable to get size of
    | dataSource DATASOURCE, Out of range value for column 'sum(mi.size)'
    | : value 7279378627 is not in class java.lang.Integer range
    
    Fix this issue by using a long as return value and obtaining the value
    from the ResultSet as long.
    neverpanic authored and rupalid committed Feb 24, 2020
  2. ZBUG-1295 Check if authtoken is expired abd reauthenticate (#1023)

    * ZBUG-1295 Check if authtoken is expired abd reauthenticate
    
    * ZBUG-1295 Check if authtoken is expired abd reauthenticate
    rupalid committed Feb 24, 2020
  3. ZBUG-1311: Fix for zimbraSmtpHostname should honour domain level valu…

    …e (if set) instead of server level (#1019)
    
    * ZBUG-1311: Fix for zimbraSmtpHostname should honour domain level value (if set) instead of server level
    
    * ZBUG-1311: address PR feedback
    Ajinkya Nahar committed Feb 24, 2020