Created
July 22, 2018 15:38
-
-
Save longtailventures/5c6d37d3e1e5ae291d674191914f6605 to your computer and use it in GitHub Desktop.
Why is sendmail slow?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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