Commit 51ab5b74d985c7f3b83e0b60c0ae799c295bacfc
1 parent
1f0c2918bf
Exists in
master
SQL file readability
Showing 1 changed file with 31 additions and 30 deletions Side-by-side Diff
conf/ldap_config.sql
| 1 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_uuid_attribute', 'auto'); | |
| 2 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_host', 'localhost'); | |
| 3 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_port', '389'); | |
| 4 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_base', 'dc=yunohost,dc=org'); | |
| 5 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_base_users', 'dc=yunohost,dc=org'); | |
| 6 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_base_groups', 'dc=yunohost,dc=org'); | |
| 7 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_tls', '0'); | |
| 8 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_display_name', 'cn'); | |
| 9 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_userlist_filter', 'objectClass=mailAccount'); | |
| 10 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_group_filter', 'objectClass=posixGroup'); | |
| 11 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_group_display_name', 'cn'); | |
| 12 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_group_member_assoc_attribute', 'uniqueMember'); | |
| 13 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_login_filter', '(&(|(objectclass=mailAccount))(uid=%uid))'); | |
| 14 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_quota_attr', 'mailQuota'); | |
| 15 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_quota_def', ''); | |
| 16 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_email_attr', 'mail'); | |
| 17 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_cache_ttl', '600'); | |
| 18 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_configuration_active', '1'); | |
| 19 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'home_folder_naming_rule', ''); | |
| 20 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_backup_host', ''); | |
| 21 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_dn', ''); | |
| 22 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_agent_password', ''); | |
| 23 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_backup_port', ''); | |
| 24 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_nocase', ''); | |
| 25 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_turn_off_cert_check', ''); | |
| 26 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_override_main_server', ''); | |
| 27 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_attributes_for_user_search', ''); | |
| 28 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_attributes_for_group_search', ''); | |
| 29 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_expert_username_attr', 'uid'); | |
| 30 | -INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES ('user_ldap', 'ldap_expert_uuid_attr', ''); | |
| 1 | +INSERT INTO oc_appconfig (appid, configkey, configvalue) VALUES | |
| 2 | +('user_ldap', 'ldap_uuid_attribute', 'auto'), | |
| 3 | +('user_ldap', 'ldap_host', 'localhost'), | |
| 4 | +('user_ldap', 'ldap_port', '389'), | |
| 5 | +('user_ldap', 'ldap_base', 'dc=yunohost,dc=org'), | |
| 6 | +('user_ldap', 'ldap_base_users', 'dc=yunohost,dc=org'), | |
| 7 | +('user_ldap', 'ldap_base_groups', 'dc=yunohost,dc=org'), | |
| 8 | +('user_ldap', 'ldap_tls', '0'), | |
| 9 | +('user_ldap', 'ldap_display_name', 'cn'), | |
| 10 | +('user_ldap', 'ldap_userlist_filter', 'objectClass=mailAccount'), | |
| 11 | +('user_ldap', 'ldap_group_filter', 'objectClass=posixGroup'), | |
| 12 | +('user_ldap', 'ldap_group_display_name', 'cn'), | |
| 13 | +('user_ldap', 'ldap_group_member_assoc_attribute', 'uniqueMember'), | |
| 14 | +('user_ldap', 'ldap_login_filter', '(&(|(objectclass=mailAccount))(uid=%uid))'), | |
| 15 | +('user_ldap', 'ldap_quota_attr', 'mailQuota'), | |
| 16 | +('user_ldap', 'ldap_quota_def', ''), | |
| 17 | +('user_ldap', 'ldap_email_attr', 'mail'), | |
| 18 | +('user_ldap', 'ldap_cache_ttl', '600'), | |
| 19 | +('user_ldap', 'ldap_configuration_active', '1'), | |
| 20 | +('user_ldap', 'home_folder_naming_rule', ''), | |
| 21 | +('user_ldap', 'ldap_backup_host', ''), | |
| 22 | +('user_ldap', 'ldap_dn', ''), | |
| 23 | +('user_ldap', 'ldap_agent_password', ''), | |
| 24 | +('user_ldap', 'ldap_backup_port', ''), | |
| 25 | +('user_ldap', 'ldap_nocase', ''), | |
| 26 | +('user_ldap', 'ldap_turn_off_cert_check', ''), | |
| 27 | +('user_ldap', 'ldap_override_main_server', ''), | |
| 28 | +('user_ldap', 'ldap_attributes_for_user_search', ''), | |
| 29 | +('user_ldap', 'ldap_attributes_for_group_search', ''), | |
| 30 | +('user_ldap', 'ldap_expert_username_attr', 'uid'), | |
| 31 | +('user_ldap', 'ldap_expert_uuid_attr', ''); |