Mercurial > prosody-wiki
annotate mod_s2s_never_encrypt_blacklist.wiki @ 205:97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
author | maranda3985@gmail.com |
---|---|
date | Fri, 02 Sep 2011 23:05:24 +0000 |
parents | |
children | 007a1fe5d2d1 |
rev | line source |
---|---|
205
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
1 #labels Stage-Beta |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
2 = Details = |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
3 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
4 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 using a secure stream. (e.g. OpenFire) |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
5 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
6 = Usage = |
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 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
|
9 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
10 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
|
11 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
12 Then list each host as follow: |
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 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
|
15 }}} |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
16 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
17 = Compatibility = |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
18 |
97e15fe16c0b
wiki: added page for mod_s2s_never_encrypt_blacklist
maranda3985@gmail.com
parents:
diff
changeset
|
19 It's supposed to work with 0.7-0.8.x |