M maffi New Pleskian May 11, 2022 #1 Server operating system version Debian 10.12 Plesk version and microupdate number 18.0.43 Hello Pleskler, is it possible to generate a list with the domains/subscriptions that have the "Email Services" active?
Hello Pleskler, is it possible to generate a list with the domains/subscriptions that have the "Email Services" active?
IgorG Plesk addicted! Plesk Certified Professional May 11, 2022 #2 You can use the following SQL query for getting this list: MariaDB [psa]> select domains.name from DomainServices,domains where DomainServices.dom_id=domains.id and DomainServices.type='mail' and DomainServices.status=0;
You can use the following SQL query for getting this list: MariaDB [psa]> select domains.name from DomainServices,domains where DomainServices.dom_id=domains.id and DomainServices.type='mail' and DomainServices.status=0;