masqmail
view contrib/guess-hostname @ 160:60c92aa59911
added a script to guess the host's name
author | meillo@marmaro.de |
---|---|
date | Thu, 08 Jul 2010 11:27:03 +0200 |
parents | |
children | 71dcdc2020bc |
line source
1 #!/bin/sh
2 #
3 # try several ways to guess the hostname
5 (
7 # this is what Debian uses
8 cat /etc/mailname
10 # this is often the short hostname
11 cat /etc/hostname
13 # this file was mentioned on the Internet
14 cat /etc/HOSTNAME
16 # probably a good value on GNU/Linux
17 hostname -f
19 # often the short hostname, but widely available
20 hostname
22 ) 2>/dev/null | sort -u