-1

このリンクからサーバー ejabberd 18.03 と cliente をマウントし ます: https://gist.github.com/developerworks/317ccf6eb2d3060610f8

コンソールでの私のエラーは次のとおりです:

サーバーはインバンド登録をサポートしていません

Ejabberd.yml 構成

ポート: 5280

ip: "::"

module: ejabberd_http

request_handlers:

  "/ws": ejabberd_http_ws

  "/bosh": mod_bosh

  "/oauth": ejabberd_oauth

  "/api": mod_http_api



http_bind: true

register: true

captcha: false

auth_method: 内部

' アクセス制御リスト

管理者:

user:

  - "admin@localhot"

ローカル:

user_regexp: ""

ループバック:

ip:

  - "127.0.0.0/8"

  - "::1/128"

  - "::FFFF:127.0.0.1/128"

' シェイパーのルール

max_user_sessions: 10

max_user_offline_messages:

- 5000: admin

- 100

c2s_shaper:

- none: admin

- normal

' アクセス規則

ローカル: - 許可: ローカル c2s: - 拒否: ブロック - 許可

登録: - 許可: trusted_network

信頼できる_ネットワーク:

- allow: all

' モジュール

mod_register:

##
## Protect In-Band account registrations with CAPTCHA.
##
##   captcha_protected: true
##
## Set the minimum informational entropy for passwords.
##
##   password_strength: 32
##
## After successful registration, the user receives
## a message with this subject and body.
##

welcome_message:

  subject: "Welcome!"

  body: |-

    Hi.

    Welcome to this XMPP server.

##
## When a user registers, send a notification to
## these XMPP accounts.
##
registration_watchers:

  - "admin1@example.org"

##
## Only clients in the server machine can register accounts
##

ip_access: trusted_network
##
## Local c2s or remote s2s users cannot register accounts
##

access_from: register

access: register
4

1 に答える 1

0

それ以外の

  register:
    - allow: trusted_network

置く

  register:
    - allow: all
于 2018-05-15T19:05:56.717 に答える