{% extends 'core/base.html' %} {% block title %}SMTP | Killian{% endblock %} {% block content %}
Configure outbound email for user invitations and Killian notifications.
Only Killian Admins can modify these settings. The SMTP password is encrypted with the Killian master key and is never returned to the browser.
The password itself is intentionally never displayed.
{{ smtp_config.host|default:'Not configured' }}
{{ smtp_config.port }}
{{ smtp_config.username|default:'Not configured' }}
{% if smtp_config.password_configured %}Configured (encrypted){% else %}Not configured{% endif %}
{{ smtp_config.get_security_display }}
{% if smtp_config.from_name %}{{ smtp_config.from_name }} <{{ smtp_config.from_email|default:'not configured' }}>{% else %}{{ smtp_config.from_email|default:'Not configured' }}{% endif %}
{{ smtp_config.base_url|default:'Automatic from request' }}
{{ smtp_config.timeout }} seconds
Use this after saving to verify connectivity, authentication, encryption, relay permissions, and the sender address.