| Philipp Le | 30eb613 | 2022-07-04 12:59:37 +0200 | [diff] [blame] | 1 | |
| 2 | // Put username here | ||||
| 3 | export const username = ""; | ||||
| 4 | |||||
| 5 | export 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 | }; | ||||