Other: Fix apple mail config

This commit is contained in:
James Houlahan
2022-10-26 17:31:09 +02:00
parent 7b7a2068ea
commit 04d9fa8f9e
2 changed files with 4 additions and 3 deletions

View File

@ -78,13 +78,14 @@ func prepareMobileConfig(
Port: imapPort,
TLS: imapSSL,
Username: username,
Password: password,
Password: string(password),
},
SMTP: &mobileconfig.SMTP{
Hostname: hostname,
Port: smtpPort,
TLS: smtpSSL,
Username: username,
Password: string(password),
},
}
}