Git Product home page Git Product logo

zimbra-drive's Introduction

Open Drive

Open Drive is not not a fully fledged Zextras product under active support and development, but a contribution provided to the Zimbra Community "as is".

Anyone is free to download it and to clone the repository to apply any change complying with the project's licensing but there is no official commitment on updates, on the inclusion of features and/or the approval of pull requests.


Zimbra and Nextcloud / ownCloud integration.

Features:

  • Use Zimbra credentials in Nextcloud / ownCloud.
  • Navigate Nextcloud / ownCloud files inside Zimbra.
  • Manage Nextcloud / ownCloud files inside Zimbra (upload, move, rename, delete).
  • Attach Nextcloud / ownCloud files to email.

Supported Versions:

  • Nextcloud: 9, 10, 11, 12, 13
  • ownCloud: 9, 9.1, 10

Install

0. Check package integrity

Verify the files using the provided md5 file:

md5sum -c zimbra_drive.md5

1. Extract Zimbra files

Extract zimbra_drive.tgz

mkdir -p /tmp/zimbradrive
tar -xvf zimbra_drive.tgz --directory /tmp/zimbradrive

2. Install the Zimbra Extension

  • Create directory /opt/zimbra/lib/ext/zimbradrive
mkdir -p /opt/zimbra/lib/ext/zimbradrive
  • Copy /tmp/zimbradrive/zimbra-extension/zal.jar and /tmp/zimbradrive/zimbra-extension/zimbradrive-extension.jar in /opt/zimbra/lib/ext/zimbradrive
cp /tmp/zimbradrive/zimbra-extension/zal.jar /tmp/zimbradrive/zimbra-extension/zimbradrive-extension.jar /opt/zimbra/lib/ext/zimbradrive
  • Restart the mailbox to let the extension to be loaded correctly.
zmmailboxdctl restart

3. Configure the Zimbra Extension

  • Set the Nextcloud/owncloud service url foreach domain. The cloud service url (CLOUD_URL) has to be in the form: protocol://cloudHost/path_to_index.php.
zmprov md domainExample.com zimbraDriveOwnCloudURL https://cloud.example.com/index.php

4. Install the ZimbraDrive zimlet

Change owner and group of /tmp/zimbradrive/zimlet/com_zextras_drive_open.zip

chown zimbra:zimbra /tmp/zimbradrive/zimlet/com_zextras_drive_open.zip

Deploy the zimlet

zmzimletctl deploy /tmp/zimbradrive/zimlet/com_zextras_drive_open.zip

Enable the zimlet in your class of service.

5. Install Nextcloud/ownCloud ZimbraDrive App

Get the zimbradrive application from https://apps.nextcloud.com/apps/zimbradrive or https://marketplace.owncloud.com/apps/zimbradrive. Extract zimbradrive.tar.gz in the folder apps of Nextcloud/ownCloud.

tar -xzvf zimbradrive.tar.gz  --directory=/var/www/html/apps

Login in Own/Next Cloud as an administrator, in App menu, enable ZimbraDrive, or by command line

sudo -u www-data php /var/www/html/occ app:enable zimbradrive

6. Configure Nextcloud/ownCloud ZimbraDrive App

Configure the Zimbra Server into to the Zimbra Drive section in the Admin Configuration of Your Nextcloud/ownCloud instance.

  • Enable Allow Zimbra's users to log in and Enable Zimbra authentication back end
  • Set Zimbra's host and port
  • Enable Use SSL if the Zimbra server required an SSL connection (recommended)
  • Enable Enable certificate verification if the Zimbra server provide a valid certificate (recommended)
  • To enable the auto login for the Nextcloud/ownCloud's users whom click on the Zimbra icon in the Nextcloud/ownCloud web GUI, insert the Domain Preauth Key

Click to Test page button to check if there are problems with the server connection.

Note The preauth key can be generate with:

zmprov generateDomainPreAuthKey domain.com

If the preauth key already exists, it can be obtained with:

zmprov getDomain domain.com zimbraPreAuthKey

Uninstall

Remove all Zimbra Users from Nextcloud/ownCloud

If the administrator remove the Nextcloud/ownCloud App the Zimbra users will not be visible anymore in the Nextcloud/ownCloud administration panel.

Note To manually disable the authentication through Zimbra remove these lines to the Nextcloud/ownCloud configuration:

'user_backends' => array (
 0 => array (
   'class' => 'OC_User_Zimbra',
   'arguments' => array(),
 ),
),

WARNING: This process will delete all the Zimbra Users data from Nextcloud / ownCloud and is not reversible.

To remove all the Zimbra Users from the Nextcloud / ownCloud installation run this command:

cd /var/www/nextcloud # Go to the OCC path
mysql_pwd='password'  # Set the database password
occ_db='nextcloud'    # Set the database name for the Nextcloud / ownCloud

mysql -u root --password="${mysql_pwd}" "${occ_db}" -N -s \
    -e 'SELECT `uid` FROM `oc_zimbradrive_users`' \
    | while read uid; do \
        sudo -u www-data php ./occ user:delete "${uid}"; \
        mysql -u root --password="${mysql_pwd}" "${occ_db}" \
            -e "DELETE FROM oc_accounts WHERE uid = '${uid}' LIMIT 1"; \
      done

Issues

Zimbra Drive is an official Zimbra product - support is provided through the official Zimbra channels to both Open Source and Network Edition customers.

zimbra-drive's People

Contributors

adrb avatar chbusold avatar davide-baldo avatar polpetta avatar sanchezfauste avatar stefanograsselli avatar zextrasjay avatar zxcine avatar zxugopadoan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.