dgaramond2 has asked for the wisdom of the Perl Monks concerning the following question:
$ perl -MNet::Ident -MO::Socket::INET -le'
$sock=IO::Socket::INET->new(
PeerAddr => "localhost:smtp(25)"
);
print join ", ", Net::Ident::lookup($sock);'
prints something like
vcESTuEcDGGJRPKKKAvySLm3r9lcMRko, OTHER
How do I decrypt the token if I'm not root on the local machine? I'm going to install this ident-using code from my Perl mail server (which does not run as root).
Do I have to turn off encryption in /etc/identd.conf?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using Net::Ident?
by ikegami (Patriarch) on Oct 13, 2004 at 15:40 UTC | |
by dgaramond2 (Monk) on Oct 15, 2004 at 16:21 UTC |