Mercurial > prosody-wiki
annotate mod_s2s_never_encrypt_blacklist.wiki @ 428:4e1a0785c0e4
Edited wiki page mod_firewall through web user interface.
author | florob@babelmonkeys.de |
---|---|
date | Mon, 17 Feb 2014 00:11:00 +0000 |
parents | 7c960f1b4cf8 |
children |
rev | line source |
---|---|
213 | 1 #summary Stops prosody from including starttls into available features for specified remote servers. |
205
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
2 #labels Stage-Beta |
213 | 3 |
205
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
4 = Details = |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
5 |
212 | 6 Let's you stop Prosody from sending <starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'> feature to choppy/buggy servers which therefore would fail to re-negotiate and use a secure stream. (e.g. [http://issues.igniterealtime.org/browse/OF-405 OpenFire 3.7.0]) |
205
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
7 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
8 = Usage = |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
9 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
10 Copy the plugin into your prosody's modules directory. |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
11 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
12 And add it between your enabled modules into the global section (modules_enabled). |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
13 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
14 Then list each host as follow: |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
15 {{{ |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
16 tls_s2s_blacklist = { "host1.tld", "host2.tld", "host3.tld" } |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
17 }}} |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
18 |
211 | 19 In the unfortunate case of OpenFire... you can add the Server's ip address directly as it may not send proper rfc6121 requests. |
20 {{{ | |
21 tls_s2s_blacklist_ip = { "a.a.a.a", "b.b.b.b", "c.c.c.c" } | |
22 }}} | |
23 | |
205
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
24 = Compatibility = |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
25 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
26 It's supposed to work with 0.7-0.8.x |