- 08 Jun, 2014 1 commit
-
-
Christian Schudt authored
MUC affiliations are managed in the #admin namespace, not in the #owner namespace. This is already a minor contribution to OF-178 (Updating MUC to latest version).
-
- 07 Jun, 2014 2 commits
- 06 Jun, 2014 4 commits
-
-
Christian Schudt authored
OF-819 IQs of type error get falsely routed to IQ.createResult() which results in an Exception and connection termination This can happen, if the session is in wrong status (e.g. if the user has not yet authenticated) and the client responds with an error IQ. Only reply to an IQ if it is type get or set.
-
Dave Cridland authored
-
dwd authored
Update Junit to 4.11
-
dwd authored
Update Slf4J to version 1.7.7
-
- 05 Jun, 2014 6 commits
-
-
Sven Bunge authored
Update Junit to 4.11 and add hamcrest - because the method assertThat is working with hamcrest matchers
-
Sven Bunge authored
-
Dele Olajide authored
-
dwd authored
Extract more properties related to connections
-
Sven Bunge authored
-
Dave Cridland authored
- Always check validity of EE Cert - Change variable name (and flip sense).
-
- 04 Jun, 2014 14 commits
-
-
Dele Olajide authored
-
-
Dele Olajide authored
-
Florian Schmaus authored
-
Dave Cridland authored
-
dwd authored
OF-709: Replace servlet.jar (2.5) with servlet-api.jar (3.1)
-
Sven Bunge authored
-
dwd authored
Codecleanup
-
Florian Schmaus authored
-
Florian Schmaus authored
and add some comments.
-
dwd authored
OF-810 RFC 6121 Routing Compliance Fix
-
dwd authored
OF-709: Update Jetty from 7.4 to 9.1.5
-
Dave Cridland authored
What this patch actually does is place existing certificates into a CertStore, including those from its (untrusted) keystore, the trust store, and any from the chain supplied by the peer, and then rebuild a chain back to a known trust anchor (from the trust store). This strategy will cope with unknown ICAs in chains, abbreviated chains, and so on, and replaces attempts to specifically handle self-signed certificates. That last said, there is an explicit shortcut to handle self-signed certificates which are supplied as end-entity certificates. These are simply checked against the trust store without any attempt to build a path.
-
Dave Cridland authored
I don't think we should be maintaining our own set if at all possible, this patch was created by creating a new keystore and inserting every certificate from an Ubuntu system's Mozilla ca-certificates set: rm -f ./src/security/truststore for x in /usr/share/ca-certificates/mozilla/*.crt; do y=`basename -s .crt $x` keytool -import -storepass changeit -keystore ./src/security/truststore -alias $y -file $x -noprompt done
-
- 02 Jun, 2014 8 commits
-
-
dwd authored
Fix OF-799: Select correct input radio on click into the text field.
-
Florian Schmaus authored
-
Florian Schmaus authored
-
Christian Schudt authored
Move all property keys regarding connection settings into a one class
-
Sven Bunge authored
-
Florian Schmaus authored
Upgrade debian package dependencies to openjdk7.
-
Florian Schmaus authored
Fix error message if build is started with an java version < 7
-
Sven Bunge authored
-
- 01 Jun, 2014 2 commits
-
-
Sven Bunge authored
-
Sven Bunge authored
-
- 30 May, 2014 2 commits
-
-
Florian Schmaus authored
Replace deprecated toURL() with toURI().toURL() as per the JavaDoc
-
Christian Schudt authored
This fix fixes the routing, which is described in RFC 6121 8.5.3.2.1. Message Misbehavior before: Every message addressed to a full JID, whose resource was not available was routed to the bare JID (as fallback). 8.5.3.2.1 specifies, that only chat messages should be routed to bare JID and other message types should either be ignored or bounced with an error. Behavior now: non-chat messages are delegated to the offline message strategy, which decides, if the message should be ignored or bounced with an error, depending on the settings in offline-messages.jsp.
-
- 29 May, 2014 1 commit
-
-
Christian Schudt authored
-