Anyway to find the IP address when someone logs into Roundcube...

chasjs

Verified User
Joined
Nov 1, 2004
Messages
48
Location
Colorado
Trying to see if the IP address of the user connecting to Roundcube can be found anywhere. In the exim log it only shows up as 127.0.0.1

Chuck
 
Trying to see if the IP address of the user connecting to Roundcube can be found anywhere. In the exim log it only shows up as 127.0.0.1

Chuck
It can only be found in Apache logs. In real time you can execute on your server:
Code:
tail -f /var/log/httpd/access_log | grep roundcube
But if you need to see the whole list you should do something like this:
Code:
cat /var/log/httpd/access_log | grep roundcube | awk '{print $1}' | uniq

If you need to check out only one domain you will need to change access_log to /domains/domain.name.log and so on.
 
Last edited:
Back
Top