masqmail
view admin/guess-hostname @ 363:02bc0331e390
Removed support for openssl linking
It had been rarely used and could have caused legal problems.
For explanations, see this mail message:
Date: Sun, 04 Sep 2011 17:35:23 +0200
From: markus schnalke <meillo@marmaro.de>
To: masqmail@marmaro.de
Subject: [masqmail] RFC: Removal of configure options
Message-ID: <1R0EjD-4aX-00@serveme.home.schnalke.org>
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Wed, 14 Sep 2011 12:07:34 +0200 |
parents | 92b58989a09e |
children |
line source
1 #!/bin/sh
2 #
3 # try several ways to guess the hostname
4 # earlier output lines are probably better
6 (
8 # this is what Debian uses
9 cat /etc/mailname
11 # probably a good value on GNU/Linux
12 hostname -f
14 # this is often the short hostname
15 cat /etc/hostname
17 # often the short hostname, but widely available
18 hostname
20 # this file was mentioned on the Internet
21 cat /etc/HOSTNAME
23 ) 2>/dev/null | uniq
25 exit 0