Fixed some sentence structure

Adjusting grammar.
This commit is contained in:
Steve8291 2021-01-18 19:26:39 -05:00 committed by backportbot[bot]
parent de3dbe1bf0
commit 9991c70f17

View File

@ -30,8 +30,8 @@ Make sure the "Send notifications for events" and the "Enable notifications for
Background jobs
~~~~~~~~~~~~~~~
As this can be a expensive task, depending on the number of events, reminders and event sharees and attendees that also needs to happen
often enough so that the notifications are send on time, you can use a dedicated occ command that should be run
Running background jobs can be an expensive task when there are a large number of events, reminders, event sharees and attendees. However, this needs to happen
often enough so that the notifications are sent on time. To accomplish this you should use a dedicated occ command that runs
more often than the standard cron system::
# crontab -u www-data -e
@ -43,13 +43,13 @@ You'll also need to change the sending mode from ``background-job`` to ``occ``::
php occ config:app:set dav sendEventRemindersMode --value occ
If you don't use this dedicated command, the reminders will just be send as soon as possible when the background jobs run.
If you don't use this dedicated command, the reminders will just be sent as soon as possible when the background jobs run.
FreeBusy
--------
When logged-in, Nextcloud can return FreeBusy information for all users of the instance, to know when they are available so that you can schedule an event at the right time.
If you don't wish for users to have this possibility, you can disable FreeBusy for the whole instance with the following setting::
If you don't wish for users to have this capability, you can disable FreeBusy for the whole instance with the following setting::
php occ config:app:set dav disableFreeBusy --value yes
@ -58,7 +58,7 @@ Subscriptions
Refresh rate
~~~~~~~~~~~~
Calendar subscriptions are cached on server and refreshed periodically. The default refresh rate is of one week, unless the subscription itself tells otherwise.
Calendar subscriptions are cached on server and refreshed periodically. The default refresh rate is one week, unless the subscription itself tells otherwise.
To set up a different default refresh rate, change the ``calendarSubscriptionRefreshRate`` option::