RE: spamd Sys-Hostname-Long-1.4 error

2006-10-06 Thread Rosenbaum, Larry M.
In Long.pm, go to line 91 and change this my $tmp = `hostname` . '.' . `domainname`; to this my $tmph = `hostname`; my $tmpd = `domainname`; my $tmp = $tmph.$tmpd; -Original Message- From: John Goubeaux [mailto:[EMAIL PROTECTED] Posted At: Friday, October 06,

RE: spamd Sys-Hostname-Long-1.4 error

2006-10-06 Thread John Goubeaux
Thanks! I actually got this to fix it as well: open HOSTNAME, , /etc/hostname.hme0 or warn; open DOMAINNAME, , /etc/defaultdomain or warn; my $tmp = HOSTNAME . '.' . DOMAINNAME; -john At 2:17 PM -0400 10/6/06, Rosenbaum,

Re: spamd Sys-Hostname-Long-1.4 error

2006-10-06 Thread John Rudd
Good lord, I hope that's not the general solution on solaris 8. That would produce a result of: foo.ucsc.edu.ucsc.edu (as the hostname returned by hostname is already fully qualified on our systems, both because it SHOULD BE, and because MIT kerberos wants/needs it to be) or