On most IRC clients, doing /whois on a nick will display their idle time. However, irssi does not show this. Is there any way to make it show the idle time?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

This depends on the IRC server. Normally, the WHOIS query would be processed by the server you are on. But on IRC, servers only know idle time and away status for directly connected users. (This is to avoid a lot of unnecessary traffic between servers.)

To see idle time, put the nickname twice, like this:

/whois foo foo

It is also in the builtin help:

/help whois

This will cause the query to be forwarded to the target user's server, which knows the idle time.

Note that on some networks, cross-server WHOIS queries can be heavily throttled (example: freenode).

link|improve this answer
Perfect! Thank you! – Wuffers Apr 17 '11 at 20:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.