(RADIATOR) How to use PreAuthHook?

1999-07-29 Thread tom
I put the following in Realm DEFAULT right before the AuthBy clause. PreAuthHook sub { open(L, " /tmp/tmp.log"); printf L "(%s)\n", $_[0]-getUserName(); close(L); } And I don't see any tmp.log file get created. What did I do wrong? Regards, Tom === Archive

Re: (RADIATOR) How to use PreAuthHook?

1999-07-29 Thread Hugh Irvine
On Fri, 30 Jul 1999, tom wrote: I put the following in Realm DEFAULT right before the AuthBy clause. PreAuthHook sub { open(L, " /tmp/tmp.log"); printf L "(%s)\n", $_[0]-getUserName(); close(L); } And I don't see any tmp.log file get created. What did