Anope IRC Services https://www.anope.org
  • C++ 96.7%
  • CMake 1.1%
  • HTML 0.9%
  • Shell 0.5%
  • Perl 0.3%
  • Other 0.5%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-01 21:07:09 -07:00
.forgejo/workflows Update .forgejo/workflows/pr-check.yml 2026-08-01 21:07:09 -07:00
.github Merge remote-tracking branch 'upstream/2.1' into 2.1 2026-07-28 21:16:41 -05:00
data Add support for skipping CRs when writing to sendmail. 2026-07-25 13:05:00 +01:00
docs Release 2.1.25. 2026-07-10 09:10:09 +01:00
include Merge remote-tracking branch 'upstream/2.1' into 2.1 2026-07-28 21:16:41 -05:00
language Merge hostserv/set and hostserv/setall. 2026-07-22 15:45:37 +01:00
modules Merge remote-tracking branch 'upstream/2.1' into 2.1 2026-07-28 21:16:41 -05:00
src Merge remote-tracking branch 'upstream/2.1' into 2.1 2026-07-28 21:16:41 -05:00
vendor Update utfcpp. 2026-07-08 14:05:16 +01:00
.BANNER Update more IRCServices references to reflect the current project. 2022-01-04 14:11:07 +00:00
.gitignore Merge branch '2.0' into 2.1. 2026-01-26 13:11:45 +00:00
.mailmap Merge branch '2.0' into 2.1. 2026-05-06 12:00:21 +01:00
CMakeLists.txt Improve configuring paths. 2026-06-29 01:31:55 +01:00
Config Append EXTRA_CONFIG_ARGS to CMake command 2026-06-05 20:34:09 +01:00
extras Update most URLs to use HTTPS if available, and fix some dead ones too. 2018-11-10 15:15:05 +01:00
README.md Merge branch '2.0' into 2.1. 2024-10-13 17:17:34 +01:00

About

Anope is an open source set of IRC services. It is highly modular, with a vast number of configurable parameters, and is the most used IRC services package. There are also many modules on the modsite to add additional features. It runs on Linux, BSD, and Windows, and supports many modern IRCds, including InspIRCd, UnrealIRCd, and ircd-hybrid. For more details, credits, command line options, and contact information see docs/README.

Installation

Linux/BSD

Download the latest release off of the releases page.

$ ./Config
$ cd build
$ make
$ make install

Now change to the directory where you installed Anope to, e.g. $ cd ~/anope/

Windows

Download the latest release off of the releases page and run the installer.

Configuration

Copy conf/anope.example.conf to conf/anope.conf

$ cp conf/anope.example.conf conf/anope.conf

Edit anope.conf, configuring the uplink, serverinfo, and protocol module configurations. Example link blocks for popular IRCds are included in the the example.conf documentation. The Anope wiki is also a good source of information. Our support channel is located at #anope on irc.teranova.net.

Note that the example configuration file includes other example configuration files. If you want to modify the other example configuration files, copy them (e.g. modules.example.conf to modules.conf) and modify the include directive in anope.conf to include the new file.

Running

Run $ ./bin/anope to start Anope. If asked to provide logs for support, use the --support flag, e.g.: $ ./bin/anope --support

Installing extra modules

Extra modules, which are usually modules which require extra libraries to use, such as m_mysql, can be enabled with the ./extras command from the source directory. Then re-run Config, make and make install again. Third party modules can be installed by placing them into the modules/third directory.