[exim-dev] [Bug 1556] Exim incorrectly checks for ident (rfc…

Top Page
Delete this message
Reply to this message
Author: Jeremy Harris
Date:  
To: exim-dev
Subject: [exim-dev] [Bug 1556] Exim incorrectly checks for ident (rfc1413) thus making is useless
------- You are receiving this mail because: -------
You are on the CC list for the bug.

http://bugs.exim.org/show_bug.cgi?id=1556

Jeremy Harris <jgh146exb@???> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jgh146exb@???





--- Comment #1 from Jeremy Harris <jgh146exb@???> 2014-12-02 14:52:28 ---
The code appears to do such binding already:

sock = ip_socket(SOCK_STREAM, host_af);
if (sock < 0) return;

if (ip_bind(sock, host_af, interface_address, 0) < 0)
  {
  DEBUG(D_ident) debug_printf("bind socket for ident failed: %s\n",
    strerror(errno));
  goto END_OFF;
  }


if (ip_connect(sock, host_af, sender_host_address, port, rfc1413_query_timeout)
     < 0)



--
Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email