summaryrefslogtreecommitdiff
path: root/kde-apps/ksmtp/files/ksmtp-17.12.0-correct-hostname.patch
blob: 8860c59ebfde34d729830da7b7152ef41b895ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
From 5199ed07428a03f1aa340da3ae99fcfa62ba2751 Mon Sep 17 00:00:00 2001
From: Fabian Vogt <fabian@ritter-vogt.de>
Date: Fri, 22 Dec 2017 22:32:49 +0100
Subject: Send the correct hostname with the HELO/EHLO command

Summary:
It sent the server's hostname previously, which some reject.

BUG: 387926

Test Plan: Ran nc as smtp server, uses the right hostname for EHLO now.

Reviewers: mlaurent, dvratil

Subscribers: #kde_pim

Tags: #kde_pim

Differential Revision: https://phabricator.kde.org/D9485
---
 src/session.cpp | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/src/session.cpp b/src/session.cpp
index 4320adc..0be26a9 100644
--- a/src/session.cpp
+++ b/src/session.cpp
@@ -27,6 +27,7 @@
 #include "ksmtp_debug.h"
 
 #include <QHostAddress>
+#include <QHostInfo>
 #include <QUrl>
 #include <QEventLoop>
 #include <QPointer>
@@ -82,6 +83,18 @@ void SessionPrivate::setAuthenticationMethods(const QList<QByteArray> &authMetho
 
 void SessionPrivate::startHandshake()
 {
+    QString hostname = m_customHostname;
+
+    if (hostname.isEmpty()) {
+        // FIXME: QHostInfo::fromName can get a FQDN, but does a DNS lookup
+        hostname = QHostInfo::localHostName();
+        if (hostname.isEmpty()) {
+            hostname = QStringLiteral("localhost.invalid");
+        } else if (!hostname.contains(QLatin1Char('.'))) {
+            hostname += QStringLiteral(".localnet");
+        }
+    }
+
     QByteArray cmd;
     if (!m_ehloRejected) {
          cmd = "EHLO ";
@@ -89,7 +102,6 @@ void SessionPrivate::startHandshake()
          cmd = "HELO ";
     }
     setState(Session::Handshake);
-    const auto hostname = m_customHostname.isEmpty() ? m_thread->hostName() : m_customHostname;
     sendData(cmd + QUrl::toAce(hostname));
 }
 
-- 
cgit v0.11.2