Application which monitors a folder and sends each file via mail
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

config.j2 449B

1234567891011121314
  1. # Folder to be monitored for new files
  2. TARGET_FOLDER = "{{ server_ftp_scan_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 = "{{ server_ftp_scan_smtp_server }}"
  8. SMTP_USER = "{{ server_ftp_scan_smtp_user }}"
  9. SMTP_PASSWORD = "{{ server_ftp_scan_smtp_password }}"
  10. # Possible log-levels: DEBUG, INFO, WARNING, ERROR
  11. LOG_LEVEL = "INFO"