According to https://tools.ietf.org/html/rfc6186
I should be able to create an SRV-record containing
I can't do this using the CLI and not using the web-interface.
The target can't be empty and only ports from 1-65535 are valid (when in fact 0 is valid too)
I would like to create this record to discourage the use of POP3
When SRV-records were introduced in Plesk they had a limitation that Protocol could only be TCP or UDP.
It took a long time before this was changed (4 years). I hope we don't have to wait for it that long this time.
I should be able to create an SRV-record containing
Code:
_pop3._tcp SRV 0 0 0 .
I can't do this using the CLI and not using the web-interface.
The target can't be empty and only ports from 1-65535 are valid (when in fact 0 is valid too)
I would like to create this record to discourage the use of POP3
Code:
/usr/local/psa/bin/dns --add ${DOMAIN} -srv "" -srv-priority 0 -srv-weight 0 -srv-port 0 -srv-protocol tcp -srv-service pop3 -srv-target-host ""
/usr/local/psa/bin/dns --add ${DOMAIN} -srv "" -srv-priority 0 -srv-weight 0 -srv-port 0 -srv-protocol tcp -srv-service pop3s -srv-target-host ""
/usr/local/psa/bin/dns --add ${DOMAIN} -srv "" -srv-priority 0 -srv-weight 0 -srv-port 0 -srv-protocol tcp -srv-service imap -srv-target-host ""
When SRV-records were introduced in Plesk they had a limitation that Protocol could only be TCP or UDP.
It took a long time before this was changed (4 years). I hope we don't have to wait for it that long this time.