🛠️ Plesk Mail Sunucusunda SSL Kontrolünü Devre Dışı Bırakma (Linux – Postfix/Dovecot)
1. SSH ile Sunucuya Bağlan
bash
ssh root@sunucu-ip-adresi
2. Dovecot Ayarlarını Düzenle (IMAP/POP3 için)
bash
nano /etc/dovecot/conf.d/10-ssl.conf
-
Şu satırı bul:
bash
ssl = required
-
Şu şekilde değiştir:
bash
ssl = no
3. Postfix Ayarlarını Düzenle (SMTP için)
bash
nano /etc/postfix/main.cf
-
Aşağıdaki satırları kontrol et ve gerekirse değiştir:
bash
smtpd_tls_security_level = none
smtp_tls_security_level = none
4. Servisleri Yeniden Başlat
bash
systemctl restart dovecot
systemctl restart postfix