Radius: Fix authentication for Radius libraries that return REJECT_RC. Bug 1850
authorLeonhard Knauff <lk@mlucom21.urz.uni-halle.de>
Mon, 8 Aug 2016 20:48:20 +0000 (21:48 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Mon, 8 Aug 2016 20:52:00 +0000 (21:52 +0100)
doc/doc-txt/ChangeLog
src/src/auths/call_radius.c

index 14832950542524c2387d69a8c7fc2c077fe113d4..60a4e4ea4ca2193b5853d083e291c54dc251435e 100644 (file)
@@ -71,6 +71,8 @@ JH/17 Fakereject: previously logged as a norml message arrival "<="; now
 JH/18 Bug 1867: make the fail_defer_domains option on a dnslookup router work
       for missing MX records.  Previously it only worked for missing A records.
 
+JH/19 Buf 1850: support Radius libraries that return REJECT_RC
+
 
 Exim version 4.87
 -----------------
index d93e6a94a1be04b90ba081e93a5ba0c3d51f634b..c3637436dc168da653ef39cdfa04035b77b75fe6 100644 (file)
@@ -165,6 +165,7 @@ switch (result)
   case OK_RC:
   return OK;
 
+  case REJECT_RC:
   case ERROR_RC:
   return FAIL;