You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've moved one of my cpanel servers to cyberpanel using the cpanel importer tool. That specific cpanel server had 1 cpanel account that included the main domain + 2 to 3 other domains as addon domains.
Upon using the cpanel import tool there are 2 issues i've noticed:
the DNS records are incomplete or not set properly.
if the server has multiple domains, the dovecot.conf is not properly set.
first the DNS issue:
screenshot what it looks like after importing:
screenshot what SHOULD look like after importing:
And some MX records were missing.
Second the dovecot.conf issue:
in /etc/dovecot/dovecot.conf
the last lines:
local_name mail.domain.ro {
ssl_cert = </etc/letsencrypt/live/mail.domain.ro/fullchain.pem
ssl_key = </etc/letsencrypt/live/mail.domain.ro/privkey.pem
}
because the import included also another .ro domain and .com domain, the SSL cert and key were completely missing. so i had to manually add:
I've moved one of my cpanel servers to cyberpanel using the cpanel importer tool. That specific cpanel server had 1 cpanel account that included the main domain + 2 to 3 other domains as addon domains.
Upon using the cpanel import tool there are 2 issues i've noticed:
first the DNS issue:
screenshot what it looks like after importing:
screenshot what SHOULD look like after importing:
And some MX records were missing.
Second the dovecot.conf issue:
in /etc/dovecot/dovecot.conf
the last lines:
local_name mail.domain.ro {
ssl_cert = </etc/letsencrypt/live/mail.domain.ro/fullchain.pem
ssl_key = </etc/letsencrypt/live/mail.domain.ro/privkey.pem
}
because the import included also another .ro domain and .com domain, the SSL cert and key were completely missing. so i had to manually add:
local_name mail.seconddomain.ro {
ssl_cert = </etc/letsencrypt/live/mail.seconddomain.ro/fullchain.pem
ssl_key = </etc/letsencrypt/live/mail.seconddomain.ro/privkey.pem
}
local_name mail.comdomain.com {
ssl_cert = </etc/letsencrypt/live/mail.comdomain.com/fullchain.pem
ssl_key = </etc/letsencrypt/live/mail.comdomain.com/privkey.pem
}
Operating system:
Almalinux 8
CyberPanel version:
2.3.9
The text was updated successfully, but these errors were encountered: