[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Can't stop external email forwarding
- Subject: Re: [cobalt-users] Can't stop external email forwarding
- From: "Danny Daniels" <dcd@xxxxxxxxxxxxxxxxxx>
- Date: Mon Aug 20 07:44:01 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
>
> 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