15 lines
369 B
Python
Raw Normal View History

2023-06-08 15:01:49 +02:00
# Folder to be monitored for new files
2023-11-04 13:45:15 +01:00
TARGET_FOLDER = "<target_folder>"
2023-06-08 15:01:49 +02:00
# Recipiant for the files found in TARGET_PATH
SEND_TO = "scan@mount-mockery.de"
# Sender
2023-11-04 13:45:15 +01:00
SEND_FROM = "Scanner <scan@<smtp_server>>"
SMTP_SERVER = "<smtp_server>"
SMTP_USER = "<smtp_user>"
SMTP_PASSWORD = "<smtp_password>"
2023-06-08 15:01:49 +02:00
# Possible log-levels: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL = "INFO"