Files
mail-autoconfig/templates/config-v1.1.xml.j2
mifi 21a35cb8e2
Some checks failed
continuous-integration/drone Build is failing
first commit
2025-07-23 21:33:16 -03:00

21 lines
700 B
Django/Jinja

<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
<emailProvider id="{{ DOMAIN }}">
<domain>{{ DOMAIN }}</domain>
<incomingServer type="imap">
<hostname>mail.mifi.holdings</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILLOCALPART%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>mail.mifi.holdings</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILLOCALPART%</username>
</outgoingServer>
</emailProvider>
</clientConfig>