Merge pull request #212 from jengelh/hostname

Unbreak own hostname qualification on POSIX systems
This commit is contained in:
Vincent Richard 2019-02-07 19:50:33 +01:00 committed by GitHub
commit dad5b4a855
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -159,6 +159,10 @@ static inline bool isAcceptableHostname(const vmime::string& str) {
const vmime::string posixHandler::getHostName() const { const vmime::string posixHandler::getHostName() const {
char hostname[256];
::gethostname(hostname, sizeof(hostname));
hostname[sizeof(hostname)-1] = '\0';
// Try to get official canonical name of this host // Try to get official canonical name of this host
struct addrinfo hints; struct addrinfo hints;
@ -169,8 +173,7 @@ const vmime::string posixHandler::getHostName() const {
struct addrinfo* info; struct addrinfo* info;
if (getaddrinfo(NULL, "http", &hints, &info) == 0) { if (getaddrinfo(hostname, "http", &hints, &info) == 0) {
// First, try to get a Fully-Qualified Domain Name (FQDN) // First, try to get a Fully-Qualified Domain Name (FQDN)
for (struct addrinfo* p = info ; p != NULL ; p = p->ai_next) { for (struct addrinfo* p = info ; p != NULL ; p = p->ai_next) {
@ -202,11 +205,6 @@ const vmime::string posixHandler::getHostName() const {
freeaddrinfo(info); freeaddrinfo(info);
} }
// Get host name
char hostname[256];
::gethostname(hostname, sizeof(hostname));
hostname[sizeof(hostname) - 1] = '\0';
if (::strlen(hostname) == 0 || !isAcceptableHostname(hostname)) { if (::strlen(hostname) == 0 || !isAcceptableHostname(hostname)) {
::strcpy(hostname, "localhost.localdomain"); ::strcpy(hostname, "localhost.localdomain");
} }