masqmail
annotate contrib/guess-hostname @ 204:5745edd5b769
removed the --disable-smtp-server configure option
masqmail will now always have the possibility to listen on a port compiled in
if you don't want it to listen on a port add this to your masqmail.conf:
listen_addresses = ""
also, if you don't start it as daemon it will not listen neither
author | meillo@marmaro.de |
---|---|
date | Fri, 16 Jul 2010 15:38:53 +0200 |
parents | 60c92aa59911 |
children | 92b58989a09e |
rev | line source |
---|---|
meillo@160 | 1 #!/bin/sh |
meillo@160 | 2 # |
meillo@160 | 3 # try several ways to guess the hostname |
meillo@162 | 4 # earlier output lines are probably better |
meillo@160 | 5 |
meillo@160 | 6 ( |
meillo@160 | 7 |
meillo@160 | 8 # this is what Debian uses |
meillo@160 | 9 cat /etc/mailname |
meillo@160 | 10 |
meillo@162 | 11 # probably a good value on GNU/Linux |
meillo@162 | 12 hostname -f |
meillo@162 | 13 |
meillo@160 | 14 # this is often the short hostname |
meillo@160 | 15 cat /etc/hostname |
meillo@160 | 16 |
meillo@162 | 17 # often the short hostname, but widely available |
meillo@162 | 18 hostname |
meillo@162 | 19 |
meillo@160 | 20 # this file was mentioned on the Internet |
meillo@160 | 21 cat /etc/HOSTNAME |
meillo@160 | 22 |
meillo@162 | 23 ) 2>/dev/null |