blob: bbb587fcb8514ba9301046c09fe0799e9bab4c9c [file] [log] [blame]
Philipp Le30eb6132022-07-04 12:59:37 +02001
2// Put username here
3export const username = "";
4
5export const story_config = {
6 users: [
7 // Add users to watch here
8 ],
9 destination: "download",
10 email: {
11 smtp: {
12 host: "", // SMTP host
13 port: 587,
14 user: "", // SMTP user
15 password: "", // SMTP password
16 starttls: true
17 },
18 from: "",
19 to: "",
20 subject: ""
21 },
22 sleep_sec: (2 * 3600)
23};