-
Hello, I am a graduate student conducting a comprehensive survey of open-source messaging middleware as a research for my thesis. I have a few questions that I could not find answers for in the documentation.
Thanks in advance for any help, Wael. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
ejabberd itself does not include such a configuration. I took a look at Mnesia documentation, but found nothing like that in https://www.erlang.org/doc/apps/mnesia/users_guide.html I remember that the ejabberd log files sometimes reported an Erlang warning that the disk was getting almost full. This was back when my disk was almost full of other stuff, and erlang detected that risky situation... But I couldn't reproduce this now, no documentation, and in any case it was just warning reports.
For generic erlang process counter: For user/account limits... Each xmpp account is represented in ejabberd as an erlang process There are some ways to restrict xmpp accounts usage (and abuse):
That option was added in 29dcc9b looking at that commit, it is used only when running the API command delete_expired_pubsub_items |
Beta Was this translation helpful? Give feedback.
ejabberd itself does not include such a configuration. I took a look at Mnesia documentation, but found nothing like that in https://www.erlang.org/doc/apps/mnesia/users_guide.html
I remember that the ejabberd log files sometimes reported an Erlang warning that the disk was getting almost full. This was back when my disk was almost full of other stuff, and erlang detected that risky situation... But I couldn't reproduce this now, no documentation, and in any case it was just warning reports.