• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

HOW-TO: finding "Nobody" spammer

Plesk 8.0.1 issue

New plesk uses /etc/alternatives/mta as mail parser. This program works incorrectly! Any ideas about logging mails from apache?
 
This script is very useful - much thanks to those who did the work creating and fine-tuning it.

Question:

How can I determine if the mail being sent is actually spam?

Output from the script:

Code:
Mon Nov 20 10:58:22 CST 2006 - /home/httpd/vhosts/domain1.com/httpdocs/contact/form - apache x 48 48   Apache /var/www /sbin/nologin
This could be a legitimate email - how do I know for sure?

:)
 
Then you should log the mail body as well. it will show the content of the mail.
 
Hi Nightman,

That would be pretty handy ... except I must have cut class the day they taught that, because I can't make it work. :)

Do you think that you could adapt bartje3's instructions above to reflect the extra code needed to log the actual messages?

(or anyone else?)

Much thanks.

:)
 
go to this part

}
open (MAIL,"|$mailprog $arg") || die "cannot open $mailprog: $!\n";
while (<STDIN> ) {
print MAIL;
}

replace it with following

}
open (MAIL,"|$mailprog $arg") || die "cannot open $mailprog: $!\n";
while (<STDIN> ) {
print MAIL;
print INFO;
}
 
Cool - that worked perfectly!!!

Thanks a bunch!

I actually was close to that .... really, I was :)

Now I have to work on log rotation ... I will really need it with all that data.

Thanks again!

:)
 
it logged on freebsd but sendmail not working, failed to send email!
path = /usr/local/psa/qmail/bin/sendmail
Thanks,
 
Back
Top