Config Changes: Difference between revisions
Jump to navigation
Jump to search
(1.9.0) |
(1.9.3) |
||
Line 67: | Line 67: | ||
set show-uname 1 | set show-uname 1 | ||
</pre> | </pre> | ||
== Config changes made in 1.9.1 == | |||
* Added Libera to accepted server types | |||
== Config changes made in 1.9.2 == | |||
* Added the 'extended-join' setting, to enable the extended-join CAP capability | |||
<pre> | |||
# To request the account-notify feature via CAP, set this to 1 | |||
#set extended-join 0 | |||
</pre> | |||
* Moved DNS-related settings out of the modules section and into the core config area | |||
* No longer load the (now-deprecated) DNS module by default | |||
== Config changes made in 1.9.3 == | |||
* None. |
Revision as of 18:07, 11 July 2022
Config changes made in 1.9.0
- Added additional net-types for freenode, Quakenet, and Rizon (net-type)
## What is your network? ## Options are: ## EFnet ## IRCnet ## Undernet ## DALnet ## Libera ## freenode ## QuakeNet ## Rizon ## Twitch (This requires twitch.mod to be loaded as well) ## Other (This is a good, sane default option to use if your network/ircd is ## not listed here. Additional configuration options for this setting ## can be found further down in the IRC MODULE section) set net-type "EFnet"
- Added ability to choose specific SSL/TLS protocols to use (ssl-protocols)
# Specify the list of protocols allowed for use with ssl. The protocol list is # one or more protocol strings separated by spaces. Available protocols are # SSLv2, SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3. # set ssl-protocols "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
- Added ability to allow bots to remain linked if userfile sharing fails (sharefail-unlink)
# By default, Eggdrop will abort the linking process if userfile sharing is # enabled but the userfile transfer fails. Set this to 0 to keep the bots # linked if the userfile transfer fails and retry every minute (both bots must # be v1.9.0 or higher). #set sharefail-unlink 1
- Changed the method Eggdrop uses to add servers from a {} list to the new addserver command
# This is the bot's server list. The bot will start at the first server listed, # and cycle through them whenever it gets disconnected. You need to change these # servers to YOUR network's servers. # # The format is: # server add <server> [port [password]] # Prefix the port with a plus sign to attempt a SSL connection: # server add <server> +port [password] # # This format is new as of version 1.9.0. The previous method using # set servers {} will still work for now, but is deprecated and will be removed # in a future release. server add you.need.to.change.this 6667 server add another.example.com 6669 password server add 2001:db8:618:5c0:263:: 6669 password server add ssl.example.net +7000
- Removed the listen-addr command. The listen command now accepts an optional IP argument in lieu of using listen-addr
# To bind the listening port to a specific IP instead of all available, insert # a valid IP assigned to the host Eggdrop is running on infront of the port # (this replaces the listen-addr setting used prior to Eggdrop v1.9) # # listen 1.2.3.4 3333 all
- Added the show-uname setting, which allows you to disable the display of uname info for the host system in things like .status
# Disable this setting if you do not want to show name and release level of the # operating system. You'll probably also want to edit the default motd (in # text/motd) and remove its display from there. set show-uname 1
Config changes made in 1.9.1
- Added Libera to accepted server types
Config changes made in 1.9.2
- Added the 'extended-join' setting, to enable the extended-join CAP capability
# To request the account-notify feature via CAP, set this to 1 #set extended-join 0
- Moved DNS-related settings out of the modules section and into the core config area
- No longer load the (now-deprecated) DNS module by default
Config changes made in 1.9.3
- None.