-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.yml
52 lines (52 loc) · 1.71 KB
/
config.example.yml
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
mail:
account: "[email protected]"
password: '**********'
server: 'mail.example.org'
imap_port: '993'
smtp_port: '465'
form:
inb ox: 'INBOX'
sender: '[email protected]'
subject: '"Form Subject"'
move_to: 'INBOX.Bearbeitet'
calendar: 'calendars/user/neue-termine/'
date_format: '%d/%m/%Y - %H:%M'
newsletter:
sender: '[email protected]'
subject: '[] Test'
recipients:
- mail: "[email protected]"
- mail: "[email protected]"
telegram:
token: 'xxxx:xxxxxx'
group_id: '-xxxxxx'
data: # Create a git repository to store persistent data, see README for instructions
remote: '[email protected]:<username>/<repo>.git'
localdir: "bewegungskalender/mapData" # you can leave this as default
mastodon: # Create an Application on your Mastodon Account and enter the secrets here
client_key: 'xxxxxxxxxxxx'
client_secret: 'xxxxxxxxxx'
access_token: 'xxxxxxxxx'
instance: 'xxxxx.xxxxx'
caldav: # configuration for your caldav server
url: 'https://cloud.example.org/remote.php/dav/'
calendars: # list of calendars to use
- url: 'calendars/user/../'
- url: 'calendars/user/../'
- url: 'calendars/user/../'
username: 'user'
password: '**********'
format:
time_locale: "de_DE.utf8"
timezone: "Europe/Berlin"
message:
footer:
- line: 'This will be displayed at the end of the message'
- line: 'This will be also displayed at the end of the message'
- line: '[When using Markdown \(A Markup Language\), you need to escape characters by using "\" \- otherwise it will not work](Link)'
emojis:
- calendar: "calendar_one"
emoji: 'Emoji_One' # This lets you add Emojis in front of Calendar Names in the Message
- calendar: "calendar_two"
emoji: 'Emoji_Two'
...