C chasjs Verified User Joined Nov 1, 2004 Messages 48 Location Colorado Jun 23, 2010 #1 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
localhost Verified User Joined Aug 17, 2007 Messages 157 Location Moldova Jun 23, 2010 #2 chasjs said: 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 Click to expand... 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: Jun 23, 2010
chasjs said: 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 Click to expand... 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.