{% extends "base.html" %} {% block title %}Whitelisted IPs - Email Server{% endblock %} {% block content %}

Whitelisted IP Addresses

Add IP Address
Whitelisted IP Addresses
{% if ips %}
{% for ip, domain in ips %} {% endfor %}
IP Address Domain Status Added Actions
{{ ip.ip_address }}
{{ domain.domain_name }} {% if ip.is_active %} Active {% else %} Inactive {% endif %} {{ ip.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if ip.is_active %}
{% else %}
{% endif %}
{% else %}

No IP Addresses Whitelisted

Add IP addresses to allow authentication without username/password

Add First IP Address
{% endif %}
IP Whitelist Information
{% if ips %}
  • Active IPs: {{ ips|selectattr('0.is_active')|list|length }}
  • Domains covered: {{ ips|map(attribute='1.domain_name')|unique|list|length }}
  • Latest addition: {% set latest = ips|map(attribute='0')|max(attribute='created_at') %} {{ latest.created_at.strftime('%Y-%m-%d') if latest else 'N/A' }}
{% endif %}
How IP Whitelisting Works
  • Whitelisted IPs can send emails without username/password authentication
  • Each IP is associated with a specific domain
  • IP can only send emails for its authorized domain
  • Useful for server-to-server email sending
Your Current IP
Detecting...
{% endblock %} {% block extra_js %} {% endblock %}