How are mail SSL's renewed?

Hi,

Recently I forgot to update one of the mail config templates so that it has ipv6 in. I’ve added it in now, but the SSL certs for webmail/mail have expired. I’ve verified the templates are ok:

web_system.tpl:

    listen      %ip%:%web_port%;
    listen      [::]:%web_port%;
    server_name %domain_idn% %alias_idn%;

and web_system.stpl:

    listen      %ip%:%web_ssl_port% ssl http2;
    listen      [::]:%web_ssl_port% ssl http2;
    server_name %domain_idn% %alias_idn%;

and the relevant configs in /conf/domain.com/mail/ look good:


    listen      212.71.233.14:443 ssl http2;
    listen      [::]:443 ssl http2;
    server_name webmail.x.com mail.x.com;

I’ve run :

sudo /usr/local/hestia/bin/v-update-letsencrypt-ssl

Which goes through with no errors. But webmail.domain.com comes up with an expired SSL Cert (from yesterday, which is what made me look into it)

Does something else handle the webmail/mail SSL issuing? Normally it just ticks over fine on its own - so I’m not sure if there is another script that should be running to update these now I’ve fixed the templates

Thanks

Andy