annotate contrib/guess-hostname @ 189:dc89737b27aa

removed the pop-before-smtp (smtp-after-pop) function this kind of authentication is superseded by SMTP AUTH today removing it is a step towards removing the POP stuff completely If you still rely on pop-before-smtp, stay with 0.2.x or run an arbitrary pop client before
author meillo@marmaro.de
date Thu, 15 Jul 2010 10:33:53 +0200
parents 71dcdc2020bc
children 92b58989a09e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
160
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
1 #!/bin/sh
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
2 #
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
3 # try several ways to guess the hostname
162
71dcdc2020bc guess-hostname: ordered guesses by quality
meillo@marmaro.de
parents: 160
diff changeset
4 # earlier output lines are probably better
160
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
5
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
6 (
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
7
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
8 # this is what Debian uses
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
9 cat /etc/mailname
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
10
162
71dcdc2020bc guess-hostname: ordered guesses by quality
meillo@marmaro.de
parents: 160
diff changeset
11 # probably a good value on GNU/Linux
71dcdc2020bc guess-hostname: ordered guesses by quality
meillo@marmaro.de
parents: 160
diff changeset
12 hostname -f
71dcdc2020bc guess-hostname: ordered guesses by quality
meillo@marmaro.de
parents: 160
diff changeset
13
160
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
14 # this is often the short hostname
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
15 cat /etc/hostname
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
16
162
71dcdc2020bc guess-hostname: ordered guesses by quality
meillo@marmaro.de
parents: 160
diff changeset
17 # often the short hostname, but widely available
71dcdc2020bc guess-hostname: ordered guesses by quality
meillo@marmaro.de
parents: 160
diff changeset
18 hostname
71dcdc2020bc guess-hostname: ordered guesses by quality
meillo@marmaro.de
parents: 160
diff changeset
19
160
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
20 # this file was mentioned on the Internet
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
21 cat /etc/HOSTNAME
60c92aa59911 added a script to guess the host's name
meillo@marmaro.de
parents:
diff changeset
22
162
71dcdc2020bc guess-hostname: ordered guesses by quality
meillo@marmaro.de
parents: 160
diff changeset
23 ) 2>/dev/null