Skip to content

Commit fa3dd9c

Browse files
authored
Merge pull request #11566 from nextcloud/backport/11565/stable28
2 parents a9b42a1 + 2913e8a commit fa3dd9c

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

admin_manual/groupware/calendar.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,22 @@ Known backends
141141
~~~~~~~~~~~~~~
142142

143143
* `Calendar Resource Management <https://github.com/nextcloud/calendar_resource_management>`_: database backend with CLI configuration for admins
144+
145+
Rate limits
146+
-----------
147+
148+
Nextcloud rate limits the creation of calendars and subscriptions if too many items are created within a short time frame. The default is 10 calendars or subscriptions per hour. This can be customized as follows::
149+
150+
# Set limit to 15 items per 30 minutes
151+
php occ config:app:set calendar rateLimitCalendarCreation --type=integer --value=15
152+
php occ config:app:set calendar rateLimitPeriodCalendarCreation --type=integer --value=1800
153+
154+
Additionally, the maximum number of calendars and subscriptions a user may create is limited to 30 items. This can be customized too::
155+
156+
# Allow users to create 50 calendars/subscriptions
157+
php occ config:app:set calendar maximumCalendarsSubscriptions --type=integer --value=50
158+
159+
or::
160+
161+
# Allow users to create calendars/subscriptions without restriction
162+
php occ config:app:set calendar maximumCalendarsSubscriptions --type=integer --value=-1

0 commit comments

Comments
 (0)