Application which monitors a folder and sends each file via mail
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

config.py 375B

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