{% extends "base.html" %} {% block title %}Settings - Email Alerts System{% endblock %} {% block content %}

System Settings

Email Configuration
The email address that will be checked for new messages.
How many days back to check for emails (1-365 days).
Comma-separated list of email domains that indicate agency responses.
Automatically process emails at regular intervals.
How often to automatically process emails (5-1440 minutes).
Alert Time Frames

Configure when alerts should be sent based on response time.

{% for frame in config.time_frames %}
{% endfor %}
Save Configuration
Click save to update all settings
Current Configuration Preview
Email Settings
  • Email: {{ config.email_address }}
  • Range: {{ config.email_days_back }} days
  • Domains: {{ config.agency_domains|join(', ') }}
  • Auto Processing: {{ 'Enabled' if config.auto_process else 'Disabled' }}
  • Interval: {{ config.auto_process_interval }} minutes
Time Frames
{% for frame in config.time_frames %}
{{ frame.name }} {{ frame.hours }} hours (Level {{ frame.alert_level }})
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}