-
Notifications
You must be signed in to change notification settings - Fork 0
/
motion_cam_mail_conf.json
44 lines (44 loc) · 1.13 KB
/
motion_cam_mail_conf.json
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
{
"debug": {
"run_once": "false",
"enable_logging": "true"
},
"camera": {
"enable": "true",
"led_on": "false",
"recording_time_delay": 10,
"resolution_height": 800,
"resolution_width": 1200,
"warm_up_time": 2
},
"dropbox": {
"enable": "true",
"dir_name": "motion_cam_mail"
},
"gpio": {
"channel": 18
},
"ifttt": {
"enable": "true",
"channel_key": "INSERT_IFTTT_CHANNEL_KEY",
"event_name": "motion_detected"
},
"image": {
"count": 6,
"filetype": ".jpg",
"name_prefix": "motion_detected_at_"
},
"mail": {
"enable": "false",
"encrypt": "true",
"name_from": "INSERT_SENDER_NAME",
"name_to": "INSERT_RECIPIENT_NAME",
"recipient_email": "INSERT_RECIPIENT_MAIL",
"smtp_server": "INSERT_SMTP_SERVER",
"smtp_port": 587,
"smtp_username": "INSERT_SMTP_USERNAME",
"smtp_password": "INSERT_SMTP_PASSWORD",
"subject": "ALERT: motion detected @",
"text": "Go check your Dropbox folder"
}
}