#conversations #fmd #findmydevice #prosody #unifiedpush #xmpp
With the help of the Prosody channel (specifically MattJ), I finally fixed sending XMPP messages from Home Assistant.
The trick was adding and configuring https://modules.prosody.im/mod_muc_bot.html properly:
Component "muc.example.com" "muc"
modules_enabled = { [...], "muc_bot"}
known_bots = { "[email protected]" }
bots_get_messages = false
ignore_bot_errors = true
Since my new XMPP upload server implementation "Rusty Filer" has been working great on trashserver.net since two weeks, I present to you:
The first release of Rusty Filer! https://codeberg.org/thomas.leister/rusty-filer/releases/tag/v1.0.0 🥳
It has the same features as Prosody Filer, but it also available as a deb package and via a apt repository (for simple deployment and automatic updates!).
If you run into any issues using this server, let me know in the Codeberg issues.
#xmpp #ejabberd #prosody #rust #rustyFiler #jabber #codeberg #opensource #software

First release of Rusty Filer! The XMPP upload fileserver that replaces Prosody Filer. It has all the features that Prosody Filer has. For migration steps, see end of README.md. **New: Debian packages available as .deb files and via apt repository!** See README.md file!
Is it possible to ease onboarding new users on #conversations ?
Mod_invites exist for #prosody but the terminal command to generate invites suggested in the help doesnt work :-(
It would be great if:
- #conversations could show if server support invites.
- "advertise" with a button a way to invite somebody on xmpp server
- if somebody has conversations installed and click on the link he can register a new account on the server from his phone. No web, computer, terminal necessary.
Nuevo server uruguayo de mensajería XMPP.
Si bien está funcionando desde el 1 de noviembre, es la primera vez que le "doy pa delante" aquí, ya que considero que está lo suficientemente "maduro" como para dejarlo crecer.
#xmpp #snikket #prosody #selfhosting #selfhosted #uruguay #monocles #conversations_im #concersations
I have an #xmpp server now. A #prosody instance. And I need to make a statement.
There are no good clients for macOS and iOS.
I think I tried all of them. #Monal is a lesser evil.
There is also #Fluux that is very good and really looks like software from the current century, but it still doesn’t support encryption.
This is sad 😔
Yesterday, I quickly put together a tutorial on how to replace ntfy.sh with a minimal, self-hosted XMPP server and published it as a GitHub Gist. Then I remembered I have a website and reworked it into two nice little posts:
https://gultsch.de/tags/ntfy.sh/
Actually, even if you don’t care about #UnifiedPush, having this minimal #Prosody server that just accepts messages via a simple REST API and sends them out via #XMPP is great alternative to the various sendxmpp scripts out there.
The goal of this tutorial is to set up a simple REST API that allows you to send XMPP messages to an existing XMPP account. This can be easily integrated into monitoring solutions or other scripts that send out status information. While there are command-line tools like go-sendxmpp that send messages by connecting to an XMPP server directly, this guide is specifically about providing an HTTP interface. curl "https://ntfy.stdmsg.tech:5281/msg/[email protected]" \ -u [email protected]:secret \ -H "Content-Type: text/plain" \ -d "Your flat white is done" Hint: If you don’t have an XMPP account to receive these messages, you can create one on a public server from within Conversations (F-Droid, Google Play) or another XMPP client of your choosing.