-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_example.toml
64 lines (47 loc) · 1.99 KB
/
config_example.toml
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
# Welcome to the FA Notify Config file
# This will configure FA notify.
#
# The only thing you MUST change in this file is the
# notification URL. That is not optional, and does not
# have a default value.
# where to find your cookie file for login
cookieFile = "cookies.txt"
# UserAgent (what browser to say to FA we are using)
userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.7) Gecko/20100101 Firefox/68.7"
# what should trigger a notification
# valid options are "submissions", "watches", "comments",
# "favorites", "journals", and "notes".
notifyOn = [
"submissions",
"watches",
"comments",
"favorites",
"journals",
"notes"
]
# where should I notify (via Apprise)
# this includes things like email, telegram, discord, etc
# see https://github.com/caronc/apprise/wiki for all the supported
# modules and how to declare them.
# Example (IFTTT): ifttt://{WebhookID}@{Event}/
# Example (Email, Gmail): mailto://{user}:{password}@gmail.com
notificationUrl = "ADD_YOURS_HERE"
# check interval - how often should I look for new notifications (in minutes)
# note that setting this too low may cause FA to flag your account.
# (be kind to their servers - try to keep this above 30)
checkInterval = 30
# log level - if you're getting new notifs but you aren't seeing anything,
# consider setting this to DEBUG, which will log exactly what notifications
# are seen before sending them to your preferred notification service, details
# about connections, and more diagnostic info.
# If things are working normally, set this to INFO
logLevel = "INFO"
# notification prefix (optional)
# If you are using some types of notifications (like Discord), you may want
# to prefix notification messages with @group. Anything you set here will be
# prepended to the message body.
notificationPrefix = ""
###### You shouldn't have to edit below this line ######
# where should we store info about the last time we ran (so we don't
# keep emailing about the same notification)
dbFile = "pastNotifs.json"