mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-24 03:29:28 +01:00
adv-relay-config: move the supported events slightly lower (#597)
[skip ci]
This commit is contained in:
parent
601259c771
commit
236d800b47
@ -6,26 +6,7 @@ PyLink Relay provides a few advanced configuration options not documented in the
|
||||
|
||||
### Custom Clientbot Styles
|
||||
|
||||
Custom Clientbot styles can be applied for any of Clientbot's supported events, by defining keys in the format `relay::clientbot_styles::EVENTNAME`.
|
||||
|
||||
|Name|Value|
|
||||
| :---: | :--- |
|
||||
MESSAGE | \x02[$colored\_netname]\x02 <$colored\_sender> $text
|
||||
KICK | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost has kicked $target_nick from $channel ($text)
|
||||
PART | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost has left $channel ($text)
|
||||
JOIN | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost has joined $channel
|
||||
NICK | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost is now known as $newnick
|
||||
QUIT | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost has quit ($text)
|
||||
ACTION | \x02[$colored\_netname]\x02 * $colored\_sender $text
|
||||
NOTICE | \x02[$colored\_netname]\x02 - Notice from $colored\_sender: $text
|
||||
SQUIT | \x02[$colored\_netname]\x02 - Netsplit lost users: $colored\_nicks
|
||||
SJOIN | \x02[$colored\_netname]\x02 - Netjoin gained users: $colored\_nicks
|
||||
PM | PM from $sender on $netname: $text
|
||||
PNOTICE | <$sender> $text
|
||||
|
||||
|
||||
- Note: the `PM` and `PNOTICE` events represent private messages and private notices respectively, when they're relayed to users behind a Clientbot link.
|
||||
- Note 2: as of 1.1.x, all public channel events are sent to channels as PRIVMSG, while `PM` and `PNOTICE` are relayed privately as NOTICE.
|
||||
Custom Clientbot styles can be applied for any of Clientbot's supported events, by defining keys in the format `relay::clientbot_styles::<event name>`. See below for a list of supported events and their default values (as of 1.3-beta1).
|
||||
|
||||
These options take template strings as documented here: https://docs.python.org/3/library/string.html#template-strings. Supported substitution values differ by event, but usually include the [hook values for each](technical/hooks-reference.md#irc-command-hooks), *plus* the following:
|
||||
|
||||
@ -46,6 +27,26 @@ These options take template strings as documented here: https://docs.python.org/
|
||||
|
||||
To disable relaying for any specific event, set the template string to an empty string (`''`).
|
||||
|
||||
#### List of supported events
|
||||
|
||||
|Event name|Default value|
|
||||
| :---: | :--- |
|
||||
MESSAGE | \x02[$colored\_netname]\x02 <$colored\_sender> $text
|
||||
KICK | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost has kicked $target_nick from $channel ($text)
|
||||
PART | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost has left $channel ($text)
|
||||
JOIN | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost has joined $channel
|
||||
NICK | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost is now known as $newnick
|
||||
QUIT | \x02[$colored\_netname]\x02 - $colored_sender$sender\_identhost has quit ($text)
|
||||
ACTION | \x02[$colored\_netname]\x02 * $colored\_sender $text
|
||||
NOTICE | \x02[$colored\_netname]\x02 - Notice from $colored\_sender: $text
|
||||
SQUIT | \x02[$colored\_netname]\x02 - Netsplit lost users: $colored\_nicks
|
||||
SJOIN | \x02[$colored\_netname]\x02 - Netjoin gained users: $colored\_nicks
|
||||
PM | PM from $sender on $netname: $text
|
||||
PNOTICE | <$sender> $text
|
||||
|
||||
- Note: the `PM` and `PNOTICE` events represent private messages and private notices respectively, when they're relayed to users behind a Clientbot link.
|
||||
- Note 2: as of 1.1.x, all public channel events are sent to channels as PRIVMSG, while `PM` and `PNOTICE` are relayed privately as NOTICE.
|
||||
|
||||
### Misc. options
|
||||
- `relay::clientbot_startup_delay`: Defines the amount of seconds Clientbot should wait after startup, before relaying any non-PRIVMSG events. This is used to prevent excess floods when the bot connects. Defaults to 5 seconds.
|
||||
- `servers::NETNAME::relay_force_slashes`: This network specific option forces Relay to use `/` in nickname separators. You should only use this option on TS6 or P10 variants that are less strict with nickname validation, as **it will cause protocol violations** on most IRCds. UnrealIRCd and InspIRCd users do not need to set this either, as `/` in nicks is automatically enabled.
|
||||
|
Loading…
Reference in New Issue
Block a user