this post was submitted on 26 Jun 2023
21 points (100.0% liked)

Free and Open Source Software

17695 readers
49 users here now

If it's free and open source and it's also software, it can be discussed here. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
 

So I want to setup a messaging server in my home that works like Telegram or Whatsapp - it should use the local network as we plan on moving around a lot of photos and files between our devices for some projects

What should I use? XMPP? Or Matrix? Or is there something else that's ideal for local networks?

Thanks!

you are viewing a single comment's thread
view the rest of the comments
[–] Gemini@lemmy.cafe 1 points 1 year ago (1 children)

I've set up an XMPP server a few years ago. It worked beautifully!

[–] shufflerofrocks@beehaw.org 1 points 1 year ago (3 children)

XMPP sounds great, but I heard it has difficulty with file transfer. How was your experience with it?

[–] leetnewb@beehaw.org 1 points 1 year ago (1 children)

xmpp has a number of file transfer modes. http upload has been smooth sailing for me. It uploads the file to the server and holds it according to a retention period you configure. Shows up in the client you sent it to.

[–] shufflerofrocks@beehaw.org 1 points 1 year ago (1 children)

Hmm, that actually sounds manageable, as I don't plan on storing the files on server for a long time. Only issue is the notifications part I think, not sure how to configure that . I'll check it out

[–] leetnewb@beehaw.org 1 points 1 year ago

Notification works like any other message. http upload is just the method the client uses - it's more or less transparent to the clients involved. It's still sending and receiving as you would expect from a messenger.

[–] Gemini@lemmy.cafe 1 points 1 year ago

I've not used it as FTP as it wasn't built for that. It was, however, brilliant for messaging. In regards to some comment below about the domain - you could always spin up a little unbound instance (+wireguard for your own stuff everywhere).

[–] poVoq@slrpnk.net 1 points 1 year ago (1 children)

Its not really designed for sharing large files and storing them, but it is not hard to get working.

However XMPP works better with a domain name and such, for a purely local solution something p2p or a local NAS is much better. Syncthing is probably the easiest to get going.

[–] shufflerofrocks@beehaw.org 1 points 1 year ago (1 children)

Ahhh

I use Syncthing already for a lot of my stuff, but it doesn't fit the bill right now. I've been reading about Matrix while looking around for this, do you have any experience with it?

[–] poVoq@slrpnk.net 1 points 1 year ago (1 children)

Yes, don't bother with it for this specific use-case.

[–] shufflerofrocks@beehaw.org 1 points 1 year ago

Got it, thanks!