Questions tagged [xmpp]

Extensible Messaging and Presence Protocol (previously known as Jabber) is a layer 7 networking protocol for realtime text messaging. It is an open standard with a decentralised architecture, allowing anyone to run their own server. It is used as the underlying protocol by Google Talk.

158 questions
1
vote
2 answers

How to remove S2S connection?

I recently tried out snikket on one of my android devices, but then removed it. A couple days later, I noticed there are some S2S connections to "push.snikket.net". Log entries: 2022-01-14 16:55:49.049 [info] <0.10068.0>@ejabberd_s2s_out:init:289…
Ryan Peters
  • 195
  • 1
  • 3
  • 13
1
vote
1 answer

Ejabberd TLS negotiation failed

I've been trying for two days to get a simple Ejabberd setup working on a FreeBSD system, nothing too complicated, but couldn't get past a "TLS negotiation failed" error in Conversations. I haven't even gotten to the part of worrying about STUN/TURN…
0
votes
0 answers

Unable to log in to ejabberd

I have an AWS instance (Ubuntu 18.04) on which I am deploying ejabberd xmpp server (v.19.09.1). I took the following steps. I disabled Ubuntu firewall (ufw) within the AWS instance since I already have the required security group in place. I…
Najeeb
  • 107
  • 7
0
votes
1 answer

ejabberd mod_logxml crashing user_send_packet and user_recieve_packet

I installed mod_logxml using ejabberdctl module_install and moved the beam file to my /ebin. I troubleshot this method because it doesn't work correctly out of the box until now, I'm finally able to get the ejabberd server running at all with the…
Patrick
  • 1
  • 1
0
votes
1 answer

Ejabberd: some questions about configurations

I have some questions about ejabberd server configurations: How I can show private chat history on the Web Admin or/and export history by specific date/time into the file? (I use Mysql for archive messages) How I can configure MUC archive…
0
votes
1 answer

ejabberd pubsub related commands

I have ejabberd 19.02 installed on an Ubuntu 18.04 server. I would like to find out if an admin can issue pub/sub related commands such as node creation, subscribing a jid to a node, sending a message to a node, etc., from either ejabberdctl or…
Phyo
  • 3
  • 2
0
votes
1 answer

ejabberd and MS SQL on Windows?

Is it correct that if I install ejabberd on Windows machine I cannot use MS SQL instead of Mnesia? https://docs.ejabberd.im/admin/configuration/#microsoft-sql-notes seems to suggest it, it says, "For now, MS SQL is only supported in Unix-like…
vkelman
  • 111
  • 3
0
votes
0 answers

Login or registration is very slow from any Xmpp Client

I've set up Ejabberd successfully everything works as it should. Only the login or a registration takes a long time, sometimes over 20 seconds. DNS entries match, config, SSL certificate too, needed ports are open. do not know why it takes so…
0
votes
1 answer

store ejabberd muc room data in mysql

I implemented group chat using mucSub feature given by ejabberd. As for now the messages that have sent to the muc room are storing in the mnesia database, whenever I restart the server message history is getting lost. I need them to be stored in…
0
votes
0 answers

XMPP behind a GCP TCP/SSL proxy load balancer

I'm trying to set up an XMPP server on Google Compute Engine. I'm currently playing with Prosody. My preferred deployment strategy for servers is to have immutable infrastructure, so I tend to build an image of the server I want (using Packer),…
Paddy
  • 136
  • 5
0
votes
1 answer

Ejabberd mod_proxy65 option issues

I have problem with mod_proxy65 and ejabberd 16.09-4. Ejabberd crash when I try to use configuration for mod_proxy65. Long ago I used mod_proxy65 with ejabberd 2.x and worked without problem. When I add this : host: "proxy.myjabber.org" name:…
n00b
  • 1
  • 1
0
votes
0 answers

ejabberd muc room chat history

Each time a new user connects to the MUC room he does not recieve previously sent message history. I want to be able to allow all users that join my MUC room to see past message history. How to do this?
0
votes
1 answer

Ejabberd mysql prefix on database tables

How can I use prefixes on database table names in Ejabberd? I have the mysql.sql file with the schema and I would to use the prefix "ejabberd_" on all the tables. I can't seem to find anything on the…
nhenrique
  • 103
  • 2
0
votes
1 answer

How to enable mod_http_upload in ejabberd server?

I need to enable mod_http_upload on my jabber-server, but, if I add the string: mod_http_upload: {} in the modules section of ejabberd.yml the server crashes and will not start until I remove this string.
Kamil
  • 11
0
votes
2 answers

Ejabberd : Creating Custom Authentication with Webservice

Is it possible to create custom authentication on Ejabberd with .NET Webservice? I want to override the default authentication happening on Ejabberd. The version I would be using on Ejabberd would be the latest available. Any pointers / help…