InspIRCd v4 is still early in development!

If you use this branch you may experience crashes, weird behaviour, and unannounced breaking changes.

You probably want to use InspIRCd v3 instead.

The "opermodes" Module (v4)

Description

This module allows the server administrator to set user modes on server operators when they log into their server operator account.

Configuration

To load this module use the following <module> tag:

<module name="opermodes">

<oper> & <type>

This module extends the core <oper> and <type> tags with the following fields:

Name Type Default Value Description
modes Text None The user modes to set on server operators when they log into their server operator account.
Example Usage

Forces Sadie to have user modes sw (snomask, wallops) and all available snomasks when logging into their server operator account:

<oper name="Sadie"
      ...
      modes="+sw +*">

Forces server operators of type NetAdmin to have user modes sw (snomask, wallops) and all available snomasks when logging into their server operator account:

<type name="NetAdmin"
      ...
      modes="+sw +*">