Skip to content

Commit

Permalink
Fix irctest for the recent Anope SASL changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
SadieCat authored and progval committed Mar 4, 2025
1 parent d218d2f commit 2b6b666
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions irctest/controllers/anope_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@
warningtimeout = 4h
}}
module {{ name = "{module_prefix}sasl" }}
module {{ name = "ns_sasl" }} # since 2.1.13
module {{ name = "sasl" }} # 2.1.2 to 2.1.12
module {{ name = "m_sasl" }} # 2.0 to 2.1.1
module {{ name = "enc_sha2" }} # 2.1
module {{ name = "enc_sha256" }} # 2.0
Expand Down Expand Up @@ -126,7 +128,6 @@ def run(self, protocol: str, server_hostname: str, server_port: int) -> None:
protocol=protocol,
server_hostname=server_hostname,
server_port=server_port,
module_prefix="" if self.software_version >= (2, 1, 2) else "m_",
)
)

Expand Down

0 comments on commit 2b6b666

Please # to comment.