Fix fonts for terminal in VS Code Editor

I use zsh as my default shell. So I needed to add the following to my settings.json file.

"terminal.integrated.defaultProfile.osx": "zsh",

For the fonts terminal profile says that I used MesloLGS NF as my font. I added the following also to my settings.json file.

"terminal.integrated.fontFamily": "MesloLGS NF",

As result my VSCode terminal window now matches my default terminal.

Verify IMAP and submission port

These hints were taken from Support Plesk

IMAP via SSL using port 993

openssl s_client -showcerts -connect mail.example.com:993 -servername mail.example.com

SMTP via TLS/StartTLS using port 25 or 587

openssl s_client -starttls smtp -showcerts -connect mail.example.com:25 -servername mail.example.com