15 lines
375 B
Python
Raw Normal View History

2023-06-08 15:01:49 +02:00
# Folder to be monitored for new files
TARGET_FOLDER = "/home/scan"
# Recipiant for the files found in TARGET_PATH
SEND_TO = "scan@mount-mockery.de"
# Sender
SEND_FROM = "Scanner-Buchen <scan@mount-mockery.de>"
SMTP_SERVER = "mount-mockery.de"
SMTP_USER = "smtp-sendmail"
SMTP_PASSWORD = "----XXX----"
# Possible log-levels: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL = "INFO"