/usr/share/ircII/script/times is in ircii 20060725-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # $eterna: times,v 1.5 2001/11/29 23:03:10 mrg Exp $
#
# prefix messages with the time
# this is our hook into the `columns' script.
assign ircii.loaded_times 1
on ^msg * echo $Z *$0* $1-
on ^send_msg * echo $Z -> *$0* $1-
on ^dcc * echo $Z =$0= $1-
on ^send_dcc * echo $Z -> =$0= $1-
on ^public * echo $Z <$0> $2-
on ^public_other * echo $Z <$0:$1> $2-
on ^send_public * echo $Z > $1-
# if we did this, we want to refresh it, with ircii.loaded_times=1
if (ircii.loaded_columns) {load columns}
|