Skip to content

Commit

Permalink
fix #472
Browse files Browse the repository at this point in the history
NTLM SSO stopped working with Of 4.8+ and Pade 1.8.1
  • Loading branch information
deleolajide committed Apr 26, 2024
1 parent 7c696ae commit 0768dd1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ call mvn clean package -Dmaven.test.skip=true

cd target
rename pade-openfire-plugin-assembly.jar pade.jar
rd "D:\Openfire\openfire_4_8_0\plugins\pade" /q /s
del "D:\Openfire\openfire_4_8_0\plugins\pade.jar"
del /q "D:\Openfire\openfire_4_8_0\logs\*.*"
copy pade.jar D:\Openfire\openfire_4_8_0\plugins\pade.jar
rd "D:\Openfire\openfire_4_8_1\plugins\pade" /q /s
del "D:\Openfire\openfire_4_8_1\plugins\pade.jar"
del /q "D:\Openfire\openfire_4_8_1\logs\*.*"
copy pade.jar D:\Openfire\openfire_4_8_1\plugins\pade.jar

rd "D:\Projects\openfire-cluster\node1\plugins\pade" /q /s
del "D:\Projects\openfire-cluster\node1\plugins\pade.jar"
Expand Down
2 changes: 1 addition & 1 deletion changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h1>

<p><b>1.8.2</b> -- <i>April 30, 2024</i></p>
<ul>
<li></li>
<li>Fixed <a href="https://github.com/igniterealtime/openfire-pade-plugin/issues/472">Issue #472 - NTLM SSO stopped working with Of 4.8+ and Pade 1.8.1</a></li>
</ul>

<p><b>1.8.1</b> -- <i>March 19, 2024</i></p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ protected boolean containsExcludedExtension( HttpServletRequest request )
}
}

if (uri.contains("/waffle")) return true;
if (uri.contains("/password")) return true;
if (uri.contains("/webchat")) return true;
if (uri.contains("/swagger")) return true;
if (uri.contains("/win-sso")) return true;
Expand Down

0 comments on commit 0768dd1

Please sign in to comment.