15 líneas
369 B
Python
15 líneas
369 B
Python
# Folder to be monitored for new files
|
|
TARGET_FOLDER = "<target_folder>"
|
|
|
|
# Recipiant for the files found in TARGET_PATH
|
|
SEND_TO = "scan@mount-mockery.de"
|
|
|
|
# Sender
|
|
SEND_FROM = "Scanner <scan@<smtp_server>>"
|
|
SMTP_SERVER = "<smtp_server>"
|
|
SMTP_USER = "<smtp_user>"
|
|
SMTP_PASSWORD = "<smtp_password>"
|
|
|
|
# Possible log-levels: DEBUG, INFO, WARNING, ERROR
|
|
LOG_LEVEL = "INFO"
|