1. 03 Nov, 2017 2 commits
  2. 02 Nov, 2017 2 commits
  3. 31 Oct, 2017 3 commits
  4. 27 Oct, 2017 9 commits
  5. 26 Oct, 2017 1 commit
  6. 24 Oct, 2017 1 commit
    • Guus der Kinderen's avatar
      OF-1335: Don't strip namespaces everywhere. · fd3e847e
      Guus der Kinderen authored
      Openfire prevents the need to re-scope XML (as described in RFC 6120 section 4.8.3) by
      pre-emptively remove certain namespaces (such as 'jabber:client' and 'jabber:server').
      It should not, however, remove these namespaces everywhere. This commit prevents such
      removal in places other than the first and second level elements (typically: stream
      and stanza elements).
      fd3e847e
  7. 23 Oct, 2017 6 commits
  8. 19 Oct, 2017 3 commits
  9. 18 Oct, 2017 3 commits
  10. 17 Oct, 2017 1 commit
  11. 16 Oct, 2017 2 commits
    • Philip Roberts's avatar
      Add automated setup support on first run · 8bf8d5cb
      Philip Roberts authored
      If <setup>true</setup> does not exist in openfire.xml (i.e. setup is not complete, and a block does exist called <autosetup> with a <run>true</run> property inside it, that looks like this:
      
      ```
          <autosetup>
              <run>true</run>
      
              <locale>en</locale>
              <xmpp>
                  <domain>localhost</domain>
                  <fqdn>localhost</fqdn>
              </xmpp>
              <encryption>
                  <algorithm>AES</algorithm>
                  <key>some-key</key>
              </encryption>
              <database>
                  <mode>standard</mode>
                  <defaultProvider>
                      <driver>org.postgresql.Driver</driver>
                      <serverURL>jdbc:postgresql://localhost:5432/a-database</serverURL>
                      <username>a-database</username>
                      <password>a-password</password>
                  </defaultProvider>
              </database>
              <admin>
                  <email>admin@example.com</email>
                  <password>admin</password>
              </admin>
          </autosetup>
      ```
      
      Then setup will be run on first launch, and the `<autosetup />` section will be deleted from openfire.xml
      8bf8d5cb
    • Dave Cridland's avatar
      Merge pull request #797 from GregDThomas/OF-1159 · aa8ad82b
      Dave Cridland authored
      Fix OF-1159 - add database column to identify encryption status
      aa8ad82b
  12. 12 Oct, 2017 1 commit
  13. 11 Oct, 2017 1 commit
  14. 07 Oct, 2017 3 commits
  15. 06 Oct, 2017 2 commits
    • akrherz's avatar
      e7d72254
    • Ian Green's avatar
      OF-35 Improvements to form structure and bug fixes · 63019649
      Ian Green authored
      * Moved detail text to under the field label i.e. left of the field.
      * the add user/group text box has been moved to the bottom row of the
        repective table, and table headings have been changed.
      * Fixed bug where blank properties were causing empty jids to be populated
        for sysadmins and allowedToCreate on the PubSubModule.
      * Fixed bug where options were removed from the forms after users/groups
        were added (options were not being transfered onto the new form).
      63019649