mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-09 21:08:32 +01:00
16 lines
371 B
Plaintext
16 lines
371 B
Plaintext
apply Service "MAIL-postfix-tls" {
|
|
import "generic-service"
|
|
check_command = "ssl"
|
|
vars.ssl_address = "mail.atlantishq.de"
|
|
vars.ssl_port = "587"
|
|
assign where host.name == "mail"
|
|
}
|
|
|
|
apply Service "IMAP-dovecot-tls" {
|
|
import "generic-service"
|
|
check_command = "ssl"
|
|
vars.ssl_address = "mail.atlantishq.de"
|
|
vars.ssl_port = "993"
|
|
assign where host.name == "mail"
|
|
}
|