Projects
Kolab:16
roundcubemail-selfcontained
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 8
View file
roundcubemail.spec
Changed
@@ -79,6 +79,7 @@ Source105: plesk.kolab_chat.inc.php Source106: plesk.kolab_folders.inc.php Source107: plesk.libkolab.inc.php +Source108: plesk.acl.inc.php Source200: 2017111400.sql @@ -283,6 +284,7 @@ cp -vf %{SOURCE105} plugins/kolab_chat/config.inc.php.dist cp -vf %{SOURCE106} plugins/kolab_folders/config.inc.php.dist cp -vf %{SOURCE107} plugins/libkolab/config.inc.php.dist +cp -vf %{SOURCE108} plugins/acl/config.inc.php.dist rm -rvf skins/kolab/ plugins/libkolab/skins/kolab/ public_html/assets/skins/kolab/ %else rm -rvf skins/plesk/ plugins/libkolab/skins/plesk/ public_html/assets/skins/plesk/
View file
debian.rules
Changed
@@ -78,6 +78,12 @@ cp -v ../SOURCES/plesk.config.inc.php config/config.inc.php ; \ cp -v ../SOURCES/plesk.managesieve.inc.php config/managesieve.inc.php ; \ cp -v ../SOURCES/plesk.password.inc.php config/password.inc.php ; \ + cp -v ../SOURCES/plesk.calendar.inc.php config/calendar.inc.php ; \ + cp -v ../SOURCES/plesk.kolab_addressbook.inc.php config/kolab_addressbook.inc.php ; \ + cp -v ../SOURCES/plesk.kolab_chat.inc.php config/kolab_chat.inc.php ; \ + cp -v ../SOURCES/plesk.kolab_folders.inc.php config/kolab_folders.inc.php ; \ + cp -v ../SOURCES/plesk.libkolab.inc.php config/libkolab.inc.php ; \ + cp -v ../SOURCES/plesk.acl.inc.php config/acl.inc.php ; \ sed -i -e 's/www-data adm/roundcube_sysuser roundcube_sysgroup/g' debian/logrotate ; \ else \ find config/ -type f | sort ; \
View file
plesk.acl.inc.php
Added
@@ -0,0 +1,33 @@ +<?php + +// Default look of access rights table +// In advanced mode all access rights are displayed separately +// In simple mode access rights are grouped into four groups: read, write, delete, full +$config['acl_advanced_mode'] = false; + +// LDAP addressbook that would be searched for user names autocomplete. +// That should be an array referring to the $config['ldap_public'] array key +// or complete addressbook configuration array. +$config['acl_users_source'] = ''; + +// The LDAP attribute which will be used as ACL user identifier +$config['acl_users_field'] = 'mail'; + +// The LDAP search filter will be &'d with search queries +$config['acl_users_filter'] = ''; + +// Enable LDAP groups in user autocompletion. +// Note: LDAP addressbook defined in acl_users_source must include groups config +$config['acl_groups'] = false; + +// Prefix added to the group name to build IMAP ACL identifier +$config['acl_group_prefix'] = 'group:'; + +// The LDAP attribute (or field name) which will be used as ACL group identifier +$config['acl_group_field'] = 'name'; + +// Include the following 'special' access control subjects in the ACL dialog; +// Defaults to array('anyone', 'anonymous') (not when set to an empty array) +// Example: array('anyone') to exclude 'anonymous'. +// Set to an empty array to exclude all special aci subjects. +$config['acl_specials'] = array('anyone');
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.