[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Can't stop external email forwarding



>
> I'm not sure how to construct the command you would need to do a find
> aol.com on the server to avoid searching your access logs at the same
time.
> Maybe a find joe@xxxxxxx via telnet would do it.
>

The following command should reveal any file listed under /home/sites that
contains the regular expression joe@xxxxxxx

1. Issue the following command from a comand prompt

find /home/sites .forward -exec grep -l "joe@xxxxxxx" {} \; 2> /dev/null

I hope this helps


-Danny