summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #34111 from nextcloud/backport/34073/stable24blizzz2022-09-271-0/+3
|\ | | | | [stable24] dont try email login if the provider username is not a valid email
| * dont try email login if the provider username is not a valid emailRobin Appelman2022-09-161-0/+3
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #33787 from nextcloud/backport/33772/stable24blizzz2022-09-271-0/+8
|\ \ | | | | | | [stable24] Log if cookie login failed with token mismatch or session unavailability
| * | Log if cookie login failed with token mismatch or session unavailabilityChristoph Wurst2022-09-011-0/+8
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-272-0/+8
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-252-2/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-242-0/+102
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-238-2/+214
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-226-4/+6
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-204-0/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-198-4/+20
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-186-0/+24
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-17138-548/+558
| |/ |/| | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-09-162-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #33700 from nextcloud/groupfolder-system-encryption-24Vincent Petry2022-09-151-0/+10
|\ \ | | | | | | [24] make groupfolders use system wide encryption keys
| * | make groupfolders use system wide encryption keysRobin Appelman2022-09-151-0/+10
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-1540-0/+40
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-132-2/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Do not empty config.php file if reading failed for any reasonCôme Chilliet2022-09-121-0/+4
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-102-0/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-092-0/+6
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Filter out old files when trying to get recent filesCarl Schwan2022-09-081-27/+55
| | | | | | | | | | | | | | | | | | | | | Only do so when asking for less than 100 files and having an offset equal to 0. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-086-0/+14
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Revert "[stable24] Compare lowercase email when updating from ldap"blizzz2022-09-071-1/+1
| | |
* | | Merge pull request #33920 from nextcloud/backport/33813/stable24Carl Schwan2022-09-071-1/+1
|\ \ \ | | | | | | | | [stable24] Compare lowercase email when updating from ldap
| * | | I dug into it again, and the issue is much simpler than I previously though.Louis Chemineau2022-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - LDAP has an email address with capital letters - NC store this address in lower case - When the user logs in, we compare the [stored email with the new lower case email](https://github.com/nextcloud/server/blob/master/lib/private/AllConfig.php#L259-L261) before storing it. Here, both email will be the same, so we won't store the new email address with upper case letters. Which is what we want. - We then [compare emails as they are before triggering an event](https://github.com/nextcloud/server/blob/master/lib/private/User/User.php#L202-L204), they won't match, so the user will receive an email signaling an email change every time he logs in. The fix is to compare the old email with the new lower case email before sending the event. Signed-off-by: Louis Chemineau <louis@chmn.me>
* | | | [tx-robot] updated from transifexNextcloud bot2022-09-074-26/+40
|/ / / | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-062-0/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-058-0/+8
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-046-2/+8
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-0312-12/+0
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-0212-0/+12
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #33749 from nextcloud/backport/33734/stable24Vincent Petry2022-09-011-1/+1
|\ \ \ | |_|/ |/| | [stable24] remove leading slash for search results at mountpoint root
| * | remove leading slash for search results at mountpoint rootRobin Appelman2022-08-301-1/+1
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-0134-2/+60
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #33696 from nextcloud/backport/33375/stable24blizzz2022-08-306-0/+96
|\ \ \ | | | | | | | | [stable24] Add back TokenCleanupJob to invalidate old temporary tokens
| * | | Add back TokenCleanupJob to invalidate old temporary tokensThomas Citharel2022-08-256-0/+96
| | |/ | |/| | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | | Merge pull request #33656 from nextcloud/backport/33574/stable24blizzz2022-08-301-2/+6
|\ \ \ | | | | | | | | [stable24] directly build the search filter for shared storage instead of setting up the source cache
| * | | directly build the search filter for shared storage instead of setting up ↵Robin Appelman2022-08-231-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | the source cache Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #33603 from nextcloud/jail-search-post-24blizzz2022-08-301-5/+7
|\ \ \ \ | | | | | | | | | | [24] optimize search post-processing for jail wrapper
| * | | | optimize search post-processing for jail wrapperRobin Appelman2022-08-181-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | don't both asking the wrapped cache if we know it's not in our jail anyway Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Merge pull request #33514 from nextcloud/backport/33513/stable24blizzz2022-08-301-4/+17
|\ \ \ \ \ | |_|_|_|/ |/| | | | [stable24] Recover installation when creating the database user fails and improve password strength
| * | | | Create more secure passwords by defaultJoas Schilling2022-08-121-4/+10
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | Recover installation when creating the user failedJoas Schilling2022-08-121-0/+7
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-292-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-272-0/+10
| |_|_|/ |/| | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | logger ignore args of sharepoint-related methodsArthur Schiwon2022-08-251-0/+5
| |_|/ |/| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Merge pull request #33644 from nextcloud/backport/32216/stable24blizzz2022-08-231-6/+13
|\ \ \ | | | | | | | | [stable24] Respect user settings in php.ini if they are big enough
| * | | Fix suggestions by @artonageMicke Nordin2022-08-221-3/+3
| | | | | | | | | | | | | | | | Signed-off-by: Micke Nordin <kano@sunet.se>
| * | | Simpler version as proposed by @artonageMikael Nordin2022-08-221-14/+5
| | | | | | | | | | | | | | | | | | | | Co-authored-by: Louis <6653109+artonge@users.noreply.github.com> Signed-off-by: Micke Nordin <kano@sunet.se>