Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save longtailventures/5c6d37d3e1e5ae291d674191914f6605 to your computer and use it in GitHub Desktop.
Save longtailventures/5c6d37d3e1e5ae291d674191914f6605 to your computer and use it in GitHub Desktop.
Why is sendmail slow?
https://linuxconfig.org/sendmail-unqualified-hostname-unknown-sleeping-for-retry-unqualified-hostname
Operating System: Linux Solution: sendmail is searching for a FQDN ( fully qualified domain name ). In our case the host name is "debian" and that is not a FQDN. To resolve this problem change /etc/hosts: FROM:
127.0.0.1 localhost
127.0.1.1 debian
TO:
127.0.0.1 localhost.localdomain localhost debian
127.0.1.1 debian
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment