The [core] configuration section¶
A typical configuration file looks like this:
[core]
nick = Sopel
host = irc.libera.chat
use_ssl = true
port = 6697
owner = dgw
channels =
"#sopel"
which tells the bot what its name is, who its owner is, which server to connect to, and which channels to join.
Everything else is pretty much optional.
The CoreSection
class represents the
[core]
section. See its documentation for detailed descriptions of each of
its attributes.
This file can be generated with sopel configure
.
See also
The Command Line Interfaces chapter for sopel configure
subcommand.
INI file structure¶
Sopel uses an INI file structure, and uses Python’s ConfigParser for that purpose. Note that the exact behavior of the parser depends on the version of Python you are running your instance of Sopel with (indentation and comments in particular are handled differently between Python 2.7 and Python 3+).
On top of that, Sopel uses its own configuration class to handle certain types of options, such as choice, integer, float, list, and boolean.
In this document, when a config option is a “list”, it means you can provide more than one value, each on its own line, like this:
[core]
single_option = only one value
multi_option =
first value
second value
"# escape value starting with # using double quotes"
# this is a comment and won't be used as value
yet another value
When a config option is a boolean, it means you can provide one of these
case-insensitive values as “true”: 1
, yes
, y
, true
, on
. Any
other value will be considered as “false”.
When a config option is a choice, it means you can provide only one of the values defined as valid for this option, or Sopel will complain about it.
Note
The INI file structure Sopel uses does not require quoting of values, except for specific cases such as the escaped list value shown above. Quoting a value unnecessarily can lead to unexpected behavior such as an absolute pathname being interpreted as relative to Sopel’s home directory.
Identity & Admins¶
Your bot’s identity is configured by the following options:
nick
: this is your bot’s nick, as it will appear to other users on the serveruser
(optional): this is your bot’s user name, as the server will see itname
(optional): the name of the bot as it will appear to aWHOIS <nick>
request
For example, given the following hostmask Sopel!sopelbot@address
, then
Sopel
is the value from nick
, and sopelbot
is the
value from user
:
[core]
nick = Sopel
user = sopelbot
name = Sopel 7.0
In that case, a WHOIS Sopel
request will give Sopel 7.0
for its name.
User Modes¶
To have Sopel set additional user modes upon connection, use the
modes
setting:
[core]
modes = BpR
In this example, upon connection to the IRC server, Sopel will send this:
MODE Sopel +BpR
Which means: this is a Bot (B), don’t show channels it is in (p), and only registered users (R) can send it messages. The list of supported modes depends on the IRC server the bot connects to.
Important
The list of available modes depends on the implementation of the IRC server, and its configuration.
For example, the user modes on Libera Chat are different from the list of available user modes on an UnrealIRCd server.
Owner & Admins¶
A Sopel instance must have exactly one owner. This is configured by the
owner
setting. If the IRC server supports IRCv3 accounts,
Sopel can use owner_account
to increase the security of
ownership verification.
The same instance can have multiple admins. Similarly, it can be configured
by admin_accounts
or by admins
. If
admin_accounts
is set, admins
will be ignored.
Example owner & admin configurations:
# Using nickname matching
[core]
# Will be used for alerts and ownership verification
owner = dgw
admins =
Exirel
HumorBaby
# Using account matching
[core]
# Will be used for alerts only
owner = dgw
# Will be used for ownership verification
owner_account = dgws_account
admin_accounts =
Exirel
HumorBaby
Both owner_account
and admin_accounts
are safer to use than
nick-based matching, but the IRC server must support accounts.
(Most, sadly, do not as of late 2019.)
Important
The owner
setting should always contain the bot
owner’s nickname, even when using owner_account
. Both
Sopel and plugins may send important messages or notices to the owner
using bot.config.core.owner
as the recipient.
IRC Server¶
To connect to a server, your bot needs these directives:
host
: the server’s hostname. Can be a domain name (likeirc.libera.chat
) or an IP address.port
: optional, the port to connect to. Usually 6697 for SSL connection and 6667 for unsecure connection, the default value the bot will use to connect to the server.use_ssl
: connect using SSL (see below):[core] host = irc.libera.chat port = 6697 use_ssl = true
You can also configure the host the bot will connect from with
bind_host
.
Ping Timeout¶
By default, if Sopel doesn’t get a PING from the server every 120s, it will
consider that the connection has timed out. This amount of time can be modified
with the timeout
directive.
Internally, Sopel will try to send a PING
either:
every 50s
or 50s after the last message was received by the bot
This value can be modified with the timeout_ping_interval
.
SSL Connection¶
It is possible to connect to an IRC server with an SSL connection. For that,
you need to set use_ssl
to true:
[core]
use_ssl = yes
verify_ssl = yes
ca_certs = /path/to/sopel/ca_certs.pem
In that case:
default port to connect to IRC will be 6697
certificate will be verified if
verify_ssl
is set to true
See also
Sopel uses the built-in ssl.wrap_socket()
function to wrap the socket
used for the IRC connection.
Note
Sopel will try to look at one of these files for the CA certs pem file
required by ssl.wrap_socket()
:
/etc/pki/tls/cert.pem
/etc/ssl/certs/ca-certificates.crt
(Debian)/etc/ssl/cert.pem
(FreeBSD base OpenSSL)/usr/local/openssl/cert.pem
(FreeBSD userland OpenSSL)/etc/pki/tls/certs/ca-bundle.crt
(RHEL 6 / Fedora)/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
(RHEL 7 / CentOS)/etc/pki/tls/cacert.pem
(OpenELEC)/etc/ssl/ca-bundle.pem
(OpenSUSE)
This is required if verify_ssl
is set to true. It is
possible to set the file used with ca_certs
. This is
useful if e.g. Sopel cannot find the CA certs file, or you need Sopel to
trust a CA not trusted by the system.
Channels¶
By default, Sopel won’t join any channels. The list of channels to
join is configured by channels
:
[core]
channels =
"#sopel"
"#sopelunkers isP@ssw0rded"
It is possible to slow down the initial joining of channels using
throttle_join
and throttle_wait
, for
example if the IRC network kicks clients that join too many channels too
quickly:
[core]
channels =
"#sopel"
"#sopelunkers isP@ssw0rded"
# ... too many channels ...
"#justonemore"
throttle_join = 4
throttle_wait = 2
In that example, Sopel will send JOIN
and WHO
commands 4 by 4 every 2s.
Flood Prevention¶
In order to avoid flooding the server, Sopel has a built-in flood prevention mechanism. The flood burst limit can be controlled with these directives:
flood_burst_lines
: the number of messages that can be sent before triggering the throttle mechanism.flood_refill_rate
: how much time (in seconds) must be spent before recovering flood limit.
The wait time when the flood limit is reached can be controlled with these:
flood_empty_wait
: time to wait once burst limit has been reached before sending a new message.flood_max_wait
: absolute maximum time to wait before sending a new message once the burst limit has been reached.
And the extra wait penalty for longer messages can be controlled with these:
flood_text_length
: maximum size of messages before they start getting an extra wait penalty.flood_penalty_ratio
: ratio used to compute said penalty.
For example this configuration:
[core]
flood_burst_lines = 10
flood_empty_wait = 0.5
flood_refill_rate = 2
will allow 10 messages at once before triggering the throttle mechanism, then it’ll wait 0.5s before sending a new message, and refill the burst limit every 2 seconds.
The wait time cannot be longer than flood_max_wait
(2s
by default). This maximum wait time includes any potential extra penalty for
longer messages.
Messages that are longer than flood_text_length
get an
extra wait penalty. The penalty is computed using a penalty ratio (controlled
by flood_penalty_ratio
, which is 1.4 by default):
length_overflow = max(0, (len(text) - flood_text_length))
extra_penalty = length_overflow / (flood_text_length * flood_penalty_ratio)
For example with a message of 80 characters, the added extra penalty will be:
length_overflow = max(0, 80 - 50) # == 30
extra_penalty = 30 / (50 * 1.4) # == 0.428s (approximately)
With the default configuration, it means a minimum wait time of 0.928s before sending any new message (0.5s + 0.428s).
You can deactivate this extra wait penalty by setting
flood_penalty_ratio
to 0.
The default configuration works fine with most tested networks, but individual bots’ owners are invited to tweak as necessary to respect their network’s flood policy.
New in version 7.0: Additional configuration options: flood_burst_lines
, flood_empty_wait
,
and flood_refill_rate
.
New in version 7.1: Even more additional configuration options: flood_max_wait
,
flood_text_length
, and flood_penalty_ratio
.
It is now possible to deactivate the extra penalty for longer messages by
setting flood_penalty_ratio
to 0.
Note
@dgw
said once about Sopel’s flood protection logic:
“It’s some arcane magic from AT LEAST a decade ago.”
Perform commands on connect¶
The bot can be configured to send custom commands upon successful connection to
the IRC server. This can be used in situations where the bot’s built-in
capabilities are not sufficient, or further automation is desired.
$nickname
can be used in a command as a placeholder, and it will be
replaced with the bot’s nickname, as specified in the configuration
(nick
).
The list of commands to send is set with
commands_on_connect
. For example, the following
configuration:
[core]
commands_on_connect =
PRIVMSG X@Channels.undernet.org :LOGIN MyUserName A$_Strong,*pasSWord
PRIVMSG IDLEBOT :login $nickname idLEPasswoRD
will, upon connection:
identify to Undernet services (
PRIVMSG X@Channels...
)login with
IDLEBOT
using the bot’s nickname (PRIVMSG IDLEBOT ...
)
See also
This functionality is analogous to ZNC’s perform
module:
https://wiki.znc.in/Perform
Authentication¶
Sopel provides two ways to authenticate: a simple method, and multi-stage
authentication. If only one authentication method is available, then it’s best
to stick to the simple method, using auth_method
.
Simple method¶
This is the most common use case: the bot will authenticate itself using one and only one method, being a server-based or nick-based authentication.
To configure the authentication method, auth_method
must
be configured. For server-based methods:
sasl
server
And for nick-based methods:
nickserv
authserv
Q
userserv
Several additional options can be used to configure the authentication method and the required credentials. You can follow the link for each to find more details:
auth_username
: account’s username, if used by theauth_method
auth_password
: password for authenticationauth_target
: authentication method’s target, if required by theauth_method
:sasl
: the SASL mechanism (PLAIN
by default)nickserv
: the service’s nickame to send credentials to (NickServ
by default)userserv
: the service’s nickame to send credentials to (UserServ
by default)
Example of nick-based authentication with NickServ service:
[core]
# select nick-based authentication
auth_method = nickserv
# auth_username is not required for nickserv
# your bot's login password
auth_password = SopelIsGreat!
# default value
auth_target = NickServ
And here is an example of server-based authentication using SASL:
[core]
# select SASL authentication
auth_method = sasl
# your bot's login username and password
auth_username = BotAccount
auth_password = SopelIsGreat!
# default SASL mechanism
auth_target = PLAIN
Example of authentication to a ZNC bouncer:
[core]
# select server-based authentication
auth_method = server
# auth_username is not used with server authentication, so instead
# we combine the ZNC username, network name, and password here:
auth_password = Sopel/libera:SopelIsGreat!
Don’t forget to configure your ZNC to log in to the real network!
Multi-stage¶
In some cases, an IRC bot needs to use both server-based and nick-based authentication.
server_auth_method
: defines the server-based authentication method to use (sasl
orserver
); it will be used only ifauth_method
does not define a server-based authentication methodnick_auth_method
: defines the nick-based authentication method to use (nickserv
,authserv
,Q
, oruserserv
); it will be used only ifauth_method
is not set
New in version 7.0: The multi-stage authentication has been added in Sopel 7.0 with its configuration options.
Server-based¶
When server_auth_method
is defined the settings used are:
server_auth_username
: account’s usernameserver_auth_password
: account’s passwordserver_auth_sasl_mech
: the SASL mechanism to use (defaults toPLAIN
)
For example, this will use NickServ IDENTIFY
command and SASL mechanism:
[core]
# select nick-based authentication
auth_method = nickserv
# auth_username is not required for nickserv
# your bot's login password
auth_password = SopelIsGreat!
# default value
auth_target = NickServ
# select SASL authentication
server_auth_method = sasl
# your bot's login username and password
server_auth_username = BotAccount
server_auth_password = SopelIsGreat!
# default SASL mechanism
server_auth_target = PLAIN
Important
If auth_method
is already set to sasl
or
server
then server_auth_method
(and its options)
will be ignored.
Nick-based¶
When nick_auth_method
is defined, the settings
used are:
nick_auth_username
: account’s username; may be optional for some authentication methods; defaults to the bot’s nicknick_auth_password
: account’s passwordnick_auth_target
: the target used to send authentication credentials; may be optional for some authentication methods; defaults toNickServ
fornickserv
, and toUserServ
foruserserv
.
For example, this will use NickServ IDENTIFY
command and SASL mechanism:
[core]
# select nick-based authentication
nick_auth_method = nickserv
# nick_auth_username is not required for nickserv
# your bot's login password
nick_auth_password = SopelIsGreat!
# default value
nick_auth_target = NickServ
# select SASL auth
server_auth_method = sasl
# your bot's login username and password
server_auth_username = BotAccount
server_auth_password = SopelIsGreat!
# default SASL mechanism
server_auth_target = PLAIN
Important
If auth_method
is already set then
nick_auth_method
(and its options) will be ignored.
Database¶
Sopel uses SQLAlchemy to connect to and query its database. To configure the
type of database, set db_type
to one of these values:
sqlite
(default)mysql
postgres
mssql
oracle
firebird
sybase
SQLite¶
There is only one option for SQLite, db_filename
, which
configures the path to the SQLite database file. Other options are ignored
when db_type
is set to sqlite
.
Other Database¶
When db_type
is not set to sqlite
, the following options
are available:
Both db_port
and db_name
are optional, depending on your setup and the
type of your database.
In all cases, Sopel uses a database driver specific to each type. This driver
can be configured manually with the db_driver
options. See the SQLAlchemy
documentation for more information about database drivers, and how to
install them.
New in version 7.0: Using SQLAlchemy for the database has been added in Sopel 7.0, which supports multiple types of databases. The configuration options required for these new types have been added at the same time.
Important
Plugins originally written for Sopel 6.x and older might not work properly
with non-sqlite
databases. If a plugin you want to use with Sopel 7+ has
not been updated, feel free to test it and tell its author(s) the results.
Commands & Plugins¶
Users can interact with Sopel through its commands, from Sopel’s core or
from Sopel’s plugins. A command is a prefix with a name. The prefix can be
configured with prefix
:
[core]
prefix = \.
Note
This directive expects a regex pattern, so special regex characters must be escaped, as shown in the example above.
Other directives include:
help_prefix
: the prefix used in help messagesalias_nicks
: additional names users might call the bot; used by nick-based commandsauto_url_schemes
: URL schemes (likehttp
orftp
) that should trigger the detection of URLs in messages
Plugins¶
By default, Sopel will load all available plugins. To exclude a plugin, you
can put its name in the exclude
directive. Here, the
reload
and meetbot
plugins are disabled:
[core]
exclude =
reload
meetbot
Alternatively, you can define a list of allowed plugins with
enable
: plugins not in this list will be ignored. In this
example, only the bugzilla
and remind
plugins are enabled (because
meetbot
is still excluded):
[core]
enable =
bugzilla
remind
meetbot
exclude =
reload
meetbot
To detect plugins from extra directories, use the extra
option.
Ignore User¶
To ignore users based on their hosts and/or nicks, you can use these options:
Logging¶
Sopel writes logs of its activities to its log directory, which is
configured by logdir
. Depending on the enabled options,
there may be as many as four log files per config:
<configname>.sopel.log
: standard logging output<configname>.error.log
: errors only<configname>.exceptions.log
: exceptions and accompanying tracebacks<configname>.raw.log
: raw traffic between Sopel and the IRC server, if enabled (see below)
Sopel uses the built-in logging.basicConfig()
function to configure its
logs with the following arguments:
format
: set tologging_format
if configureddatefmt
: set tologging_datefmt
if configuredlevel
: set tologging_level
, default toWARNING
(see the Python documentation for available logging levels)
Example of configuration for logging:
[core]
logging_level = INFO
logging_format = [%(asctime)s] %(levelname)s - %(message)s
logging_datefmt = %Y-%m-%d %H:%M:%S
logdir = /path/to/logs
Note
The <configname>
prefix in logging filenames refers to the
configuration’s basename
attribute.
New in version 7.0: Configuration options logging_format
and logging_datefmt
have been
added to extend logging configuration.
Changed in version 7.0: The log filename has been renamed from stdio.log
to
<configname>.sopel.log
to disambiguate its purpose and prevent
conflicts when running more than one instance of Sopel.
Log to a Channel¶
It is possible to send logs to an IRC channel, by configuring
logging_channel
. By default, it uses the same log level,
format, and date-format parameters as console logs. This can be overridden
with these settings:
format
withlogging_channel_format
datefmt
withlogging_channel_datefmt
level
withlogging_channel_level
Example of configuration to log errors only in the ##bot_logs
channel:
[core]
logging_level = INFO
logging_format = [%(asctime)s] %(levelname)s - %(message)s
logging_datefmt = %Y-%m-%d %H:%M:%S
logging_channel = ##bot_logs
logging_channel_level = ERROR
logging_channel_format = %(message)s
New in version 7.0: Configuration options logging_channel_level
, logging_channel_format
and logging_channel_datefmt
has been added to extend logging
configuration.
Raw Logs¶
It is possible to store raw logs of what Sopel receives and sends by setting
the flag log_raw
to true:
[core]
log_raw = on
In that case, IRC messages received and sent are stored into a file named
<configname>.raw.log
, located in the log directory.
Changed in version 7.0: The log filename has been renamed from raw.log
to
<configname>.raw.log
to prevent conflicts when running more than one
instance of Sopel.