-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de8fbe0
commit 5341f68
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,10 +93,10 @@ $config["nextcloud_attachment_exclude_users_in_addr_books"] = ["[email protected] | |
If either their, IMAP (login) username, email or mapped username matches an entry in the list, they won't be | ||
able to use the plugin (version <1.3 only matched the login usernames). | ||
|
||
The other 3 strategies involve using address books, which essentially allow retrieving the status from LDAP. Which is | ||
useful because that has probably the information who can log in where anyway. Option one is to exclude any user listed | ||
with their uid or email in a given address book, allowing you to create a (hidden) address book that filters the users | ||
that should not be able to use the plugin | ||
The other 3 strategies (only available in version >=1.3) involve using address books, which essentially allow retrieving | ||
the status from LDAP. Which is useful because that has probably the information who can log in where anyway. Option one | ||
is to exclude any user listed with their uid or email in a given address book, allowing you to create a (hidden) address | ||
book that filters the users that should not be able to use the plugin | ||
```php | ||
$config["nextcloud_attachment_exclude_users_in_addr_books"] = ["nocloud"]; | ||
``` | ||
|