Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Add approval banner in chats with requesting contacts or unsaved contacts
- Some fixes regarding manually resized chats in `overlayed` view mode.
- Replace webpack with [rspack](https://rspack.rs)
- Registration: Use https://providers.xmpp.net instead of https://compliance.conversations.im

## 11.0.1 (2025-06-09)

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ <h2>Integration Ready 🔧</h2>
<div class="h-100 p-3 rounded-3 text-center">
<h2>Get Started in Minutes 🚀</h2>
<p>Use our <a href="/fullscreen.html">web app</a> to connect to any XMPP server. You can log in with your existing XMPP account.</p>
<p>No account? No problem! With Converse you can register an account on any public XMPP server that allows in-band registration.
Have a look at the <a href="https://compliance.conversations.im/" target="_blank" rel="noopener">Conversations compliance page</a> for public XMPP servers that allow registrations.</p>
<p>No account? No problem! With Converse you can register an account on our <em>conversejs.org</em> XMPP server any other public server that allows in-band registration.
Have a look at the <a href="https://https://providers.xmpp.net//" target="_blank" rel="noopener">list of public XMPP providers</a> that allow registrations.</p>
<p>Come and chat with us at <a href="https://inverse.chat/#converse/[email protected]" class="xmpp JSnocheck" title="Converse chat room">[email protected]</a>.</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/register/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ converse.plugins.add('converse-register', {
api.settings.extend({
allow_registration: true,
domain_placeholder: __(' e.g. conversejs.org'), // Placeholder text shown in the domain input on the registration form
providers_link: 'https://compliance.conversations.im/', // Link to XMPP providers shown on registration page
providers_link: 'https://providers.xmpp.net/', // Link to XMPP providers shown on registration page
registration_domain: ''
});

Expand Down
Loading