Mercurial > masqmail
view admin/guess-hostname @ 250:a41c013c8458
moved the queue manipulation code to an new function
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Thu, 04 Nov 2010 12:32:11 -0300 |
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