How can I find a user by his/her email address?

12803

Verified User
Joined
Apr 18, 2008
Messages
9
Hello to all,

Sometimes a user will send me a support question without providing a domain or a user name or even his name.

I have only his email address (third party email service, e.g. Gmail, Hotmail) to try and look up the account.

As this might be the same address provided when opening the account, is there a way to search for the user?

Thank you,
Me.
 
Go to "/usr/local/directadmin/data/users" and testest the following code
Code:
grep -lir "emailaddress" *.com
 
Sorry, change *.com to *.conf :D
Code:
cd /usr/local/directadmin/data/users
grep -lir "emailaddress"  *.conf
 
Back
Top