From 0afcc33b1483121e6130c94eef4d4d45baea57ff Mon Sep 17 00:00:00 2001 From: Thorsten Eckel Date: Fri, 27 Oct 2017 12:11:50 +0200 Subject: [PATCH] Fixed issue #1442 - IBM bluepages searches fail. --- lib/ldap.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ldap.rb b/lib/ldap.rb index 4bd2a06ab..ae2d50beb 100644 --- a/lib/ldap.rb +++ b/lib/ldap.rb @@ -151,6 +151,12 @@ class Ldap params[:encryption] = @encryption end + # special workaround for IBM bluepages + # see issue #1422 for more details + if @host == 'bluepages.ibm.com' + params[:force_no_page] = true + end + params end