Roundcube allows you to synchronize your contacts with a CardDAV server, through a third party plugin. Using a CardDAV server like Radicale or owncloud's "Contacts" application, both available in Yunohost, allows you to centralize and manage your contacts.
Similarly to IMAP that allows you to synchronize your emails with your mail server, CardDAV allows you to access your contacts through multiple clients, such as Roundcube.
Thanks to CardDAV, you will not have to import your contacts in each of your devices.
mysql -u root -p roundcube <carddav/Roundcube-CardDAV/SQL/mysql.sql
```
* Type in the MySQL root password and press `Enter`.
* Open Roundcube configuration file:
```bash
nano /var/www/roundcube/config/main.inc.php
```
* Look for <20>Plugins<6E> section using the nano search function (Ctrl-W) and identify the line beginning with `$rcmail_config['plugins'] = array('carddav','http_authentication', 'archive', 'new_user_identity'`
* Add "carddav" at the beginning, in order to result to the following: `array('carddav','http_authentication', 'archive', 'new_user_identity'`
Now, you just have to connect to your Roundcube application, select <20>Parameters<72> located at the top right corner, then select <20>CardDAV<41> in the left panel.
Synchronize your owncloud contacts:
* Go to <20>Contacts<74> section of your owncloud application and click on the gear wheel icon located at the bottom left. Then, click on <20>CardDAV link<6E> and copy the URL that appeared.
* Go to Roundcube's CardDAV section and type in <20>ownCloud<75> in <20>Label<65> field, paste the previously copied URL and type your username and password.
Your contacts are now synchronized!
Note that even if Roundcube may complain about some <20>time out<75> but process is working.