Application which monitors a folder and sends each file via mail
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.py 369B

1234567891011121314
  1. # Folder to be monitored for new files
  2. TARGET_FOLDER = "<target_folder>"
  3. # Recipiant for the files found in TARGET_PATH
  4. SEND_TO = "scan@mount-mockery.de"
  5. # Sender
  6. SEND_FROM = "Scanner <scan@<smtp_server>>"
  7. SMTP_SERVER = "<smtp_server>"
  8. SMTP_USER = "<smtp_user>"
  9. SMTP_PASSWORD = "<smtp_password>"
  10. # Possible log-levels: DEBUG, INFO, WARNING, ERROR
  11. LOG_LEVEL = "INFO"