diff options
author | badlop <badlop@process-one.net> | 2017-10-16 12:59:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-16 12:59:04 +0200 |
commit | 21f2c57920a4a081d42c8b24fc2b4928f5ab6d0b (patch) | |
tree | 9925d22b1665ff61e14790f20f450c748b791700 | |
parent | Merge pull request #2052 from suchatorg/patch-1 (diff) | |
parent | config: makes line endings consistent when followed by '-' (diff) |
Merge pull request #2023 from rom1dep/endings
Line endings consistency edits in the example config file
-rw-r--r-- | ejabberd.yml.example | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/ejabberd.yml.example b/ejabberd.yml.example index 99892823b..0df20d626 100644 --- a/ejabberd.yml.example +++ b/ejabberd.yml.example @@ -88,7 +88,7 @@ log_rate_limit: 100 ## ## hosts: Domains served by ejabberd. ## You can define one or several, for example: -## hosts: +## hosts: ## - "example.net" ## - "example.com" ## - "example.org" @@ -123,8 +123,8 @@ hosts: ## listen: The ports ejabberd will listen on, which service each is handled ## by and what options to start it with. ## -listen: - - +listen: + - port: 5222 ip: "::" module: ejabberd_c2s @@ -151,11 +151,11 @@ listen: max_stanza_size: 65536 shaper: c2s_shaper access: c2s - - + - port: 5269 ip: "::" module: ejabberd_s2s_in - - + - port: 5280 ip: "::" module: ejabberd_http @@ -170,14 +170,14 @@ listen: ## ## ejabberd_service: Interact with external components (transports, ...) ## - ## - + ## - ## port: 8888 ## ip: "::" ## module: ejabberd_service ## access: all ## shaper_rule: fast ## ip: "127.0.0.1" - ## privilege_access: + ## privilege_access: ## roster: "both" ## message: "outgoing" ## presence: "roster" @@ -195,7 +195,7 @@ listen: ## ## ejabberd_stun: Handles STUN Binding requests ## - ## - + ## - ## port: 3478 ## transport: udp ## module: ejabberd_stun @@ -203,7 +203,7 @@ listen: ## ## To handle XML-RPC requests that provide admin credentials: ## - ## - + ## - ## port: 4560 ## ip: "::" ## module: ejabberd_xmlrpc @@ -212,7 +212,7 @@ listen: ## ## To enable secure http upload ## - ## - + ## - ## port: 5444 ## ip: "::" ## module: ejabberd_http @@ -467,7 +467,7 @@ acl: ## Local users: don't modify this. ## - local: + local: user_regexp: "" ## @@ -541,24 +541,24 @@ access_rules: announce: - allow: admin ## Only admins can use the configuration interface: - configure: + configure: - allow: admin ## Only accounts of the local ejabberd server can create rooms: - muc_create: + muc_create: - allow: local ## Only accounts on the local ejabberd server can create Pubsub nodes: - pubsub_createnode: + pubsub_createnode: - allow: local ## In-band registration allows registration of any possible username. ## To disable in-band registration, replace 'allow' with 'deny'. - register: + register: - allow ## Only allow to register from localhost - trusted_network: + trusted_network: - allow: loopback ## Do not establish S2S connections with bad servers ## If you enable this you also have to uncomment "s2s_access: s2s" - ## s2s: + ## s2s: ## - deny: ## - ip: "XXX.XXX.XXX.XXX/32" ## - deny: @@ -667,7 +667,7 @@ language: "en" ## ## Modules enabled in all ejabberd virtual hosts. ## -modules: +modules: mod_adhoc: {} mod_admin_extra: {} mod_announce: # recommends mod_adhoc @@ -696,7 +696,7 @@ modules: ## You might want to setup a SQL backend for MAM because the mnesia database is ## limited to 2GB which might be exceeded on large servers ## mod_mam: {} # for xep0313, mnesia is limited to 2GB, better use an SQL backend - mod_muc: + mod_muc: ## host: "conference.@HOST@" access: - allow @@ -707,7 +707,7 @@ modules: mod_muc_admin: {} ## mod_muc_log: {} ## mod_multicast: {} - mod_offline: + mod_offline: access_max_user_messages: max_user_offline_messages mod_ping: {} ## mod_pres_counter: @@ -716,14 +716,14 @@ modules: mod_privacy: {} mod_private: {} ## mod_proxy65: {} - mod_pubsub: + mod_pubsub: access_createnode: pubsub_createnode ## reduces resource comsumption, but XEP incompliant ignore_pep_from_offline: true ## XEP compliant, but increases resource comsumption ## ignore_pep_from_offline: false last_item_cache: false - plugins: + plugins: - "flat" - "hometree" - "pep" # pep requires mod_caps |