Plesk email users and passwords
Wed, 06/09/2010 - 14:42 — sandipBelow is sql, if you ever need to test out your users email accounts on plesk server:
mysql> use psa
mysql> select concat(mail_name,"@" ,name) as email_address, accounts.password from mail left join domains on domains.id=mail.dom_id left join accounts on accounts.id=mail.account_id;
- sandip's blog
- Login or register to post comments
Monitor outgoing emails in cPanel exim
Wed, 04/22/2009 - 23:07 — sandipIn cPanel WHM, Main > Service Configuration > Exim Configuration Editor:
Under Filters, check "System Filter File" location, usually at "/etc/cpanel_exim_system_filte
Edit the file:
Just below (this should already exist):
if not first_delivery
then
finish
endif
Add the filter:
# Monitor outgoing emails from domain.tld
if first_delivery
and ("$h_from:" contains "@domain.tld")
and ("$h_from:" does not contain "youremail@")
then
unseen deliver "monitor@domain.tld"
endif
Save changes and restart exim:
# /etc/init.d/exim restart
- sandip's blog
- Login or register to post comments
- Read more