1
0
mirror of https://github.com/EliasKotlyar/Xiaomi-Dafang-Hacks.git synced 2025-09-08 23:20:48 +02:00
Files
xiaomi-dafang-hacks/firmware_mod/config/sendmail.conf.dist
Combie81 d9fde69a60 Disabling SSL / path corrections / misc changes (#1307)
* Disabling SSL / path corrections / misc changes

Lighttpd.conf.dist: Added notes for disabling SSL
SSL left as on by default
Motion.conf.dist: Change pattern to make more sense when items are listed in explorer
Change paths case
resolv.cont.dist: Added public nameservers so that NTP will work by default
rtspserver.conf.dist: Added missing settings that are created after UI page is saved anyway
sendmail.conf.dist: Clarify AUTH entry to match rest of example
recording: Add Recording to path to help seperate/categorise files
Add sub dir with date for faster dir loading
Change from MOV to REC to identify video as "recorting" type
detectionON.sh: Change group/file pattern to make list better/consistent
telegram-bot...: Remove blank line
timelapse.sh: Change path variable name to match rest of code
Add sub directories to help with loaading/filtering of files

* Update resolv.conf.dist

Commented out Publin DNS servers as requested

Co-authored-by: Steven McCombie <smccombie@fugnet.servegame.com>
2020-03-07 21:33:59 +01:00

35 lines
922 B
Plaintext

############################################################
# edit this file and move it to /system/sdcard/config/sendmail.conf #
############################################################
# If send an email, here are some parameter to configure
#Email and name of the sender (maybe it doesn't work as mailer override it from authentication info)
FROM="House.home@gmail.com"
FROMNAME="`hostname`"
# Login and pasword to access smtp server
AUTH="john.doe@gmail.com"
PASS="JOHNDOEPASSWORD"
# Destination email
TO="yourmail@gmail.com"
# SMTP information
SERVER=smtp.gmail.com
PORT=587
# Subject of the email
SUBJECT="Alert !!"
# Body of the email
BODY="This is an alert from `hostname`"
# Number of capture to join the email
NUMBEROFPICTURES=5
# Time in seconds between captures
TIMEBETWEENSNAPSHOT=5
# Quality of compression (Valid quality values: 0 - 100, 100% is best)
# Set to -1 for no compression
QUALITY=50