-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable the roundcube contacts pannel #372
Comments
What do you mean by contacts panel? The addressbook management found under the contacts button is used for all sorts of addressbooks, including Carddav. The contacts area in the settings panel includes useful settings also for carddav addressbooks, including selection of the default addressbook. |
Hello, you can disable roundcube's builtin addressbooks by configuration: $config['address_book_type'] = '';
$config['autocomplete_addressbooks'] = [];
$config['collected_recipients'] = false;
$config['collected_senders'] = false; In the address book management, you will then only see the active carddav addressbooks (assuming you have no other addressbook sources). You can configure carddav addressbooks to be read-only for admin presets as well if you don't want users to change the addressbooks, and you can also prevent users from manually creating carddav addressbooks. Beyond that, I see little point in disabling the contacts section in roundcube entirely. In any case, I don't think rcmcarddav would be the right place for such functionality (I don't even know if a plugin can remove a standard task entirely from roundcube). I also see no point in removing the contacts section from preferences, as it robs the user of the ability to configure personal preferences like how contacts are displayed. And again, this section belongs to roundcube, so I don't think rcmcarddav would be the right place to mess with it. |
As I provide my users a web interface to manage their CardDAV contacts, I prefer to not confuse them with several tools that do the same thing (i.e. contact management).
I can understand this. Maybe I can discuss this upstream. |
In order to force users to use the CardDAV service, it would be nice to entirely hide the "contact" pannel and settings from the roundcube interface.
I suggest implementing an option in rcmcarddav to do this.
What do you think?
The text was updated successfully, but these errors were encountered: