1
0
Fork 0

Enable SSL connections for IMAPS and SMTP

This commit is contained in:
Kabelo M'sobomvu Moiloa 2023-12-26 20:46:58 +02:00
parent d1e624fa8d
commit 50b5628a2e
Signed by: elevenkb
GPG Key ID: C67F7E5AACB5C09D
3 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@
# matches the local IP (ie. you're connecting from the same computer), the
# connection is considered secure and plaintext authentication is allowed.
# See also ssl=required setting.
disable_plaintext_auth = no
disable_plaintext_auth = yes
#auth_mechanism = plain login
# Authentication cache size (e.g. 10M). 0 means it's disabled. Note that

View File

@ -10,7 +10,7 @@
- '79'
- '80'
- '113'
- '143'
- '993'
- '443'
- '1356'
- '5154'
@ -36,7 +36,7 @@
with_items:
- '22'
- '25'
- '587'
- '465'
- '2222'
- '53'

View File

@ -7,15 +7,15 @@
<displayShortName>thunix</displayShortName>
<incomingServer type="imap">
<hostname>thunix.net</hostname>
<port>143</port>
<socketType>STARTTLS</socketType>
<port>993</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILLOCALPART%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>thunix.net</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<port>465</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILLOCALPART%</username>
</outgoingServer>