• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Email all E-mail accounts on a server

V

voodoochile

Guest
Hey,

I'm trying to bounce out an email to all e-mail accounts on my psa boxes, and I'm kinda stumped as to where to pull this list of email addresses from.

I'm trying to snag this directly from the database, and I believe it's got something to do with the mn_id column, but I'm not sure as how to tie everything else together. =(

I can do it for main domain contacts, just about anything else, but a 100% listing of all e-mail addy's on a box eludes me somehow. =(


If you might know how to do this, let me know, otherwise, I'll post it here when I figure it out.

Thanks!
 
This little script to list (names, passwords, domains) was posted back in May 2005, in the Plesk 7.0 forum (by wazoo):

select d.name, m.mail_name, a.password from mail m,domains d, accounts a where d.id = m.dom_id and a.id =m.account_id and
m.postbox = 'true' order by d.name,m.mail_name;

It does work for Plesk 7.5.3 as well.

Original thread:

https://forum.plesk.com/showthread.php?threadid=23613&highlight=email+password+list+script

If nothing else, it shows the relationship between the tables and the data you will be looking for, so you can integrate it into your script.
 
Back
Top