summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-12-09 02:12:46 +0000
committerPeter Powell <petpow@saberuk.com>2018-12-09 02:13:47 +0000
commit9361492b41918980f5f53de5cc25882958d20e36 (patch)
treebfd34da922dc704b113079cdabb630802de48c30 /src
parenta4c1b1f4fcfd9cd967bf326afbbada3d91f9da34 (diff)
Raise the default max number of ACCEPT entries from 16 to 30.
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_callerid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp
index f50bdeedf..cdb10c04c 100644
--- a/src/modules/m_callerid.cpp
+++ b/src/modules/m_callerid.cpp
@@ -418,7 +418,7 @@ public:
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
{
ConfigTag* tag = ServerInstance->Config->ConfValue("callerid");
- cmd.maxaccepts = tag->getUInt("maxaccepts", 16);
+ cmd.maxaccepts = tag->getUInt("maxaccepts", 30);
tracknick = tag->getBool("tracknick");
notify_cooldown = tag->getDuration("cooldown", 60);
}