-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.conf
74 lines (70 loc) · 2.45 KB
/
example.conf
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
auth {
cert: "dutycal.crt"
key: "dutycal.key"
ca_certificate: "cacert.pem"
}
mail_config {
smtp_server_address: "smtp.example.org:587"
username: "testuser"
password: "somethingsecret"
}
edit_scope: "sf-keyholders"
tls_cert_file: "dutycal.crt"
tls_key_file: "dutycal.key"
default_time_zone: "UTC"
recurring_events {
recurrence_type: WEEKDAY
recurrence_selector: 2
title: "Open Factory Tuesday"
description: "Am Open Factory Tuesday ist die Starship Factory für jeden geöffnet. Komm rein und schau dich um! Es ist sicher auch für dich etwas dabei."
reference: "https://www.starship-factory.ch/treffen/"
required: true
start_hour: 18
duration_hours: 2
}
recurring_events {
recurrence_type: WEEKDAY
recurrence_selector: 2
title: "Open Factory Tuesday"
description: "Am Open Factory Tuesday ist die Starship Factory für jeden geöffnet. Komm rein und schau dich um! Es ist sicher auch für dich etwas dabei."
reference: "https://www.starship-factory.ch/treffen/"
required: true
start_hour: 20
duration_hours: 2
}
recurring_events {
recurrence_type: WEEKDAY
recurrence_selector: 5
title: "Open Factory Friday"
description: "Am Open Factory Friday ist die Starship Factory für jeden geöffnet. Komm rein und schau dich um! Es ist sicher auch für dich etwas dabei."
reference: "https://www.starship-factory.ch/treffen/"
required: true
start_hour: 18
duration_hours: 2
}
recurring_events {
recurrence_type: WEEKDAY
recurrence_selector: 5
title: "Open Factory Friday"
description: "Am Open Factory Friday ist die Starship Factory für jeden geöffnet. Komm rein und schau dich um! Es ist sicher auch für dich etwas dabei."
reference: "https://www.starship-factory.ch/treffen/"
required: true
start_hour: 20
duration_hours: 2
}
upcoming_notifications {
name: "daily"
warning_lookahead: 5
sender: "Your Faithful Calendar <calendar@example.org>"
recipient: "Organization Members <members@example.org>"
subject: "URGENT: Some opening hours happening soon are not assigned yet!"
template_path: "alert-templates/daily.txt"
}
upcoming_notifications {
name: "weekly"
warning_lookahead: 21
sender: "Your Faithful Calendar <calendar@example.org>"
recipient: "Organization Members <members@example.org>"
subject: "Some opening hours happening in the next weeks are unassigned"
template_path: "alert-templates/weekly.txt"
}