{% extends "base.html" %} {% block title %}Add IP Address - Email Server{% endblock %} {% block content %}

Add IP Address to Whitelist

IPv4 address that will be allowed to send emails without authentication
This IP will only be able to send emails for the selected domain
Security Note
  • Only whitelist trusted IP addresses
  • This IP can send emails without username/password authentication
  • The IP is restricted to the selected domain only
  • Use static IP addresses for reliable access
Back to IP List
Your Current IP
Detecting...
{% if domains %}
Available Domains
{% for domain in domains %}
{{ domain.domain_name }}
Created: {{ domain.created_at.strftime('%Y-%m-%d') }}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endif %}
Common Use Cases
Application Servers

Web applications that need to send transactional emails (password resets, notifications, etc.)

Scheduled Tasks

Cron jobs or scheduled scripts that send automated reports or alerts

Monitoring Systems

Monitoring tools that send alerts and status updates to administrators

Cloud Services

Cloud-based applications or services that need to send emails on behalf of your domain

{% endblock %} {% block extra_js %} {% endblock %}