diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-29 11:07:42 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-29 11:07:42 -0500 |
commit | 0371acff89b14b9bdcb03e72fd9637e26e6b517c (patch) | |
tree | f5878c9c07705379d137843cb8f92e3cdf7c20a8 /doc/en_US/ldap-profile-picture.markdown | |
parent | 3bf4789be255650b64f42231f41383cb13b65572 (diff) |
Move English documentation to folder en_US
Diffstat (limited to 'doc/en_US/ldap-profile-picture.markdown')
-rw-r--r-- | doc/en_US/ldap-profile-picture.markdown | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/en_US/ldap-profile-picture.markdown b/doc/en_US/ldap-profile-picture.markdown new file mode 100644 index 00000000..4798f645 --- /dev/null +++ b/doc/en_US/ldap-profile-picture.markdown @@ -0,0 +1,27 @@ +LDAP User Profile Photo +======================= + +Kanboard can download automatically user pictures from the LDAP server. + +This feature is enabled only if LDAP authentication is activated and the parameter `LDAP_USER_ATTRIBUTE_PHOTO` is defined. + +Configuration +------------- + +In your `config.php`, you have to set the LDAP attribute used to store the image. + +```php +define('LDAP_USER_ATTRIBUTE_PHOTO', 'jpegPhoto'); +``` + +Usually, the attributes `jpegPhoto` or `thumbnailPhoto` are used. +The image can be stored in JPEG or PNG format. + +To upload the image in the user profile, Active Directory administrators may use software like [AD Photo Edit](http://www.cjwdev.co.uk/Software/ADPhotoEdit/Info.html). + +Notes +----- + +The profile image is **downloaded at login time only if the user do not already have uploaded an image previously**. + +To change the user photo, the previous one have to be removed manually in the user profile. |