view admin/guess-hostname @ 343:9149d893eb52

refactoring: ``insourced'' create_msg_out_list() The function is only four lines and used only once. It's simpler to have the four lines just at the actual place.
author markus schnalke <meillo@marmaro.de>
date Sat, 03 Sep 2011 18:25:02 +0200
parents cab46cefa4ce
children
line wrap: on
line source

#!/bin/sh
#
# try several ways to guess the hostname
# earlier output lines are probably better

(

# this is what Debian uses
cat /etc/mailname

# probably a good value on GNU/Linux
hostname -f

# this is often the short hostname
cat /etc/hostname

# often the short hostname, but widely available
hostname

# this file was mentioned on the Internet
cat /etc/HOSTNAME

) 2>/dev/null | uniq

exit 0