summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #33911 from nextcloud/release/23.0.9v23.0.9blizzz2022-09-081-2/+2
|\ | | | | 23.0.9
| * 23.0.9Arthur Schiwon2022-09-061-2/+2
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | [tx-robot] updated from transifexNextcloud bot2022-09-0850-178/+634
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #33936 from nextcloud/revert-33922-backport/33813/stable23blizzz2022-09-071-1/+1
|\ \ | | | | | | Revert "[stable23] Compare lowercase email when updating from ldap"
| * | Revert "[stable23] Compare lowercase email when updating from ldap"blizzz2022-09-071-1/+1
|/ /
* | Merge pull request #33922 from nextcloud/backport/33813/stable23Carl Schwan2022-09-071-1/+1
|\ \ | | | | | | [stable23] 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-07240-516/+710
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-0620-4/+98
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-0530-0/+134
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-0420-2/+106
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-03310-1912/+1934
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-0232-4/+300
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #33760 from nextcloud/release/23.0.9_rc1v23.0.9rc1blizzz2022-09-011-2/+2
|\ | | | | 23.0.9 RC1
| * 23.0.9 RC1Arthur Schiwon2022-08-301-2/+2
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Merge pull request #32985 from nextcloud/backport/32242/stable23blizzz2022-09-014-24/+75
|\ \ | | | | | | [stable23] Fix logging data context to file
| * | Fix logging data context to fileThomas Citharel2022-08-304-24/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was only logged when an exception was provided or when using logData (which is not being much used). We make sure the interpolated parameters are not logged. Only tested with file write logger, but shouldn't work differently. Crash reporters always had the context. Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | | [tx-robot] updated from transifexNextcloud bot2022-09-01316-1012/+1070
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #33763 from nextcloud/backport/33603/stable23blizzz2022-08-311-5/+7
|\ \ \ | | | | | | | | [stable23] optimize search post-processing for jail wrapper
| * | | optimize search post-processing for jail wrapperRobin Appelman2022-08-301-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>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-31146-154/+154
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #33645 from nextcloud/backport/32216/stable23Simon L2022-08-311-5/+12
|\ \ \ | | | | | | | | [stable23] Respect user settings in php.ini if they are big enough
| * | | fix the backportszaimen2022-08-301-1/+9
| | | | | | | | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
| * | | Fix suggestions by @artonageMicke Nordin2022-08-221-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Micke Nordin <kano@sunet.se>
| * | | Simpler version as proposed by @artonageMikael Nordin2022-08-221-2/+1
| | | | | | | | | | | | | | | | | | | | Co-authored-by: Louis <6653109+artonge@users.noreply.github.com> Signed-off-by: Micke Nordin <kano@sunet.se>
| * | | Respect user settings in php.ini if they are big enoughMicke Nordin2022-08-221-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the admin guide: * https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html it is mentioned that you can tweek: * max_input_time * max_execution_time in order to enable larger file uploads. However, the current codebase will hard code these values to one hour, no matter what the user sets in php.ini. This patch will allow the user to set these settings in php.ini and they will be respected, if and only if, they are set to something bigger than 3600 seconds. Signed-off-by: Micke Nordin <kano@sunet.se>
* | | | Merge pull request #32751 from nextcloud/backport/32744/stable23Joas Schilling2022-08-302-1/+3
|\ \ \ \ | |_|/ / |/| | | [stable23] Always log errors from sending federation api requests to ease debugging
| * | | Always log errors from sending federation api requests to ease debuggingJoas Schilling2022-08-022-1/+3
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #33515 from nextcloud/backport/33513/stable23blizzz2022-08-301-4/+17
|\ \ \ \ | |_|_|/ |/| | | [stable23] 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-30140-196/+204
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | [tx-robot] updated from transifexNextcloud bot2022-08-298-2/+26
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | [tx-robot] updated from transifexNextcloud bot2022-08-2816-8/+76
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | [tx-robot] updated from transifexNextcloud bot2022-08-27306-680/+1264
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #33701 from nextcloud/backport/33689/stable23blizzz2022-08-261-0/+5
|\ \ \ \ | | | | | | | | | | [stable23] logger ignore args of sharepoint-related methods
| * | | | logger ignore args of sharepoint-related methodsArthur Schiwon2022-08-251-0/+5
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-26248-1064/+902
|/ / / / | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #33677 from nextcloud/backport/33624/stable23blizzz2022-08-251-34/+35
|\ \ \ \ | | | | | | | | | | [stable23] Update CRL
| * | | | Update CRLArthur Schiwon2022-08-241-34/+35
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | | Merge pull request #33683 from nextcloud/backport/33667/stable23blizzz2022-08-251-27/+20
|\ \ \ \ \ | | | | | | | | | | | | [stable23] Fix plural usage in LDAP wizard
| * | | | | Remove unused methodJoas Schilling2022-08-241-14/+0
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | Fix plural usage in LDAP wizardJoas Schilling2022-08-241-13/+20
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* / / / / [tx-robot] updated from transifexNextcloud bot2022-08-2510-8/+40
|/ / / / | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | [tx-robot] updated from transifexNextcloud bot2022-08-24124-324/+324
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #33661 from nextcloud/backport/33651/stable23Joas Schilling2022-08-233-5/+5
|\ \ \ \ | | | | | | | | | | [stable23] [stable24] Fix carddav activities
| * | | | Fix carddav activitiesJoas Schilling2022-08-233-5/+5
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | The settings where combined last minute but at the same time the activities where not adjusted to map an existing setting so the filter was not possible to even limit it to the types that the activities had. Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #33606 from nextcloud/enh/noid/mariadb10.6-stable23Simon L2022-08-231-0/+36
|\ \ \ \ | | | | | | | | | | [stable23] Add testing for mariadb10.6
| * | | | [stable23] add mariadb 10.6szaimen2022-08-211-0/+36
| | | | | | | | | | | | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
* | | | | Merge pull request #33649 from nextcloud/backport/33643/stable23John Molakvoæ2022-08-231-1/+1
|\ \ \ \ \