Hello
This is my first server production with Cyberpanel, some difficulties with IPv6, emails and SSL.
ipv6 when installing, netplan missing ipv6 range. But, netplan can read multiple yaml files, so without changing the litespeed listener, I just added the AAAA of the hostname and gateway6. When creating the domain, the AAAA IP can be added to the netplan, working without problems.
01-netcfg.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2
renderer: networkd
ethernets:
enp27s0:
addresses: [ 87.XXX.XXX.XXX/32,89.XXX.XXX.XXX/32,2001:xxxx:xxxx:xxx::1/64,2001:xxxx:xxxx:xxxx::2/64,2001:xxxx:xxxx:xxxx::bbbb/64 ]
nameservers:
search: [ some-hosting ]
addresses:
- "xxx.xxx.xxx.x"
- "8.8.8.8"
- "2001:4860:4860::8888"
routes:
- to: default
via: xxx.xxx.xxx.1
on-link: true
- to: "::/0"
via: "fe80::1"
Now for new domain just add 02-xxxdomain.yaml … 03-yyydomain.yaml
network:
version: 2
renderer: networkd
ethernets:
enp27s0:
addresses: [ 2001:xxxx:xxxx:xxxx::cafe/64 ]
I’m having difficulty creating valid emails to send, the problem is that dovecot fails when it tries to read letsencrypt/live/mail.domain.xxx because, with the exception of the hostname and the first domain, it always tries to read the last cert in the dovecot.conf.
This causes email from domain.xyz to be sent from mail.domain.aaa but not from mail.domain.xyz
Someone can help me with this issue
Thanks
Rui P.