blob: 448361297fb4cf41057c1bd964a16eb7bc123934 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`CalDavSettings interactions 1`] = `
<div>
<div
class="section"
>
<h2>
Calendar server
</h2>
<p
class="settings-hint"
>
Also install the
<a
href="../apps/office/calendar"
target="_blank"
>
Calendar app
</a>
, or
<a
href="https://docs.nextcloud.com/server/23/go.php?to=user-sync-calendars"
rel="noreferrer noopener"
target="_blank"
>
connect your desktop & mobile for syncing ↗
</a>
.
</p>
<p>
<input
class="checkbox"
id="caldavSendInvitations"
type="checkbox"
/>
<label
for="caldavSendInvitations"
>
Send invitations to attendees
</label>
<br />
<em>
Please make sure to properly set up
<a
href="../admin#mail_general_settings"
>
the email server
</a>
.
</em>
</p>
<p>
<input
class="checkbox"
id="caldavGenerateBirthdayCalendar"
type="checkbox"
/>
<label
for="caldavGenerateBirthdayCalendar"
>
Automatically generate a birthday calendar
</label>
<br />
<em>
Birthday calendars will be generated by a background job.
</em>
<br />
<em>
Hence they will not be available immediately after enabling but will show up after some time.
</em>
</p>
<p>
<input
class="checkbox"
id="caldavSendEventReminders"
type="checkbox"
/>
<label
for="caldavSendEventReminders"
>
Send notifications for events
</label>
<br />
<em>
Please make sure to properly set up
<a
href="../admin#mail_general_settings"
>
the email server
</a>
.
</em>
<br />
<em>
Notifications are sent via background jobs, so these must occur often enough.
</em>
</p>
<p
class="indented"
>
<input
class="checkbox"
id="caldavSendEventRemindersToSharedGroupMembers"
type="checkbox"
/>
<label
for="caldavSendEventRemindersToSharedGroupMembers"
>
Send reminder notifications to calendar sharees as well
</label>
<br />
<em>
Reminders are always sent to organizers and attendees.
</em>
</p>
<p
class="indented"
>
<input
class="checkbox"
id="caldavSendEventRemindersPush"
type="checkbox"
/>
<label
for="caldavSendEventRemindersPush"
>
Enable notifications for events via push
</label>
</p>
</div>
</div>
`;
|