On Friday August 12 2016 01:34:05 Joel Vande Berg wrote: > # $myhostname = 'pontiac.centralsw.com'; # must be a fully-qualified domain > name! Your config line here will be ignored because it is a comment. You have a # at the beginning. $myhostname = 'pontiac.centralsw.com'; or $myhostname = `hostname --fqdn`; Should do the trick. Andy