annotate admin/guess-hostname @ 246:4cff8638dd9b

SMTP client: tries EHLO now always first Changed the behavior of the SMTP client. Now always an EHLO greeting is sent, no matter what kind of greeting text the server had sent. If the EHLO failed, an HELO greeting is tried as fall back. This is the behavior RFC 2821 requires (section 3.2). This change will fix setups that were not possible to sent to a server because that requires AUTH but hadn't said ``ESMTP'' in its greeting message. See also: Debian bug #349211 Thanks to Steffen (inne)
author markus schnalke <meillo@marmaro.de>
date Thu, 28 Oct 2010 16:40:02 -0300
parents cab46cefa4ce
children
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
218
92b58989a09e small improvement of guess-hostname
meillo@marmaro.de
parents: 162
diff changeset
23 ) 2>/dev/null | uniq
92b58989a09e small improvement of guess-hostname
meillo@marmaro.de
parents: 162
diff changeset
24
92b58989a09e small improvement of guess-hostname
meillo@marmaro.de
parents: 162
diff changeset
25 exit 0