diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-18 22:07:31 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-18 22:17:14 +0000 |
commit | 5a72d8783ec5ac12d0a0c33e0b4f7e928a51157b (patch) | |
tree | d2428715124f6a077f635143e9ee56b16e57323b /data | |
parent | e6770bc2fd090ea60751a66492912b953e2979f8 (diff) |
Add verify-only support for POSIX crypt() hashes from Atheme.
Diffstat (limited to 'data')
-rw-r--r-- | data/anope.example.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/anope.example.conf b/data/anope.example.conf index f0e80597b..c48e74e6a 100644 --- a/data/anope.example.conf +++ b/data/anope.example.conf @@ -1308,7 +1308,7 @@ module } /* - * [DEPRECATED] enc_md5, enc_none, enc_old, enc_sha1, enc_sha256 + * [DEPRECATED] enc_md5, enc_none, enc_old, enc_posix, enc_sha1, enc_sha256 * * These modules are deprecated can *ONLY* be used as a verify-only encryption * module to retain compatibility with old Anope databases. They will be removed @@ -1317,6 +1317,7 @@ module #module { name = "enc_md5" } #module { name = "enc_none" } #module { name = "enc_old" } +#module { name = "enc_posix" } #module { name = "enc_sha1" } #module { name = "enc_sha256" } |