1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/redmine_ynh.git synced 2024-09-03 20:16:16 +02:00
redmine_ynh/conf/db-ldap.sql
Éric Gaspar 1fcae428ea cleaning
2023-10-25 22:45:27 +02:00

13 lines
No EOL
450 B
SQL

INSERT INTO public.auth_sources(type, name, host, port, base_dn, attr_login, attr_firstname, attr_lastname, attr_mail, onthefly_register, filter) VALUES (
'AuthSourceLdap',
'yunohost',
'localhost',
389,
'ou=users,dc=yunohost,dc=org',
'uid',
'givenName',
'sn',
'mail',
TRUE,
'(&(objectclass=posixAccount)(permission=cn=redmine.main,ou=permission,dc=yunohost,dc=org))'
)