summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-11-09 19:13:33 -0500
committerAdam <Adam@anope.org>2012-11-09 19:13:33 -0500
commitff3e396e92dfc6f95bf8e7a099e43cc0d3eebdf9 (patch)
tree19451d97ba9cf4dd321fc49a1e20191b273abacc /src
parent2fe387b4f0cb0e9df43c2689a1343a24f07018ca (diff)
Add a config option to disable sasl
Diffstat (limited to 'src')
-rw-r--r--src/config.cpp1
-rw-r--r--src/users.cpp5
2 files changed, 6 insertions, 0 deletions
diff --git a/src/config.cpp b/src/config.cpp
index 3f35a2ef2..be12c3479 100644
--- a/src/config.cpp
+++ b/src/config.cpp
@@ -1285,6 +1285,7 @@ ConfigItems::ConfigItems(ServerConfig *conf)
{"nickserv", "kill", "60", new ValueContainerTime(&conf->NSKill), DT_TIME, NoValidation},
{"nickserv", "modesonid", "", new ValueContainerString(&conf->NSModesOnID), DT_STRING, NoValidation},
{"nickserv", "restoreonghost", "yes", new ValueContainerBool(&conf->NSRestoreOnGhost), DT_BOOLEAN, NoValidation},
+ {"nickserv", "sasl", "yes", new ValueContainerBool(&conf->NSSASL), DT_BOOLEAN, NoValidation},
{"mail", "usemail", "no", new ValueContainerBool(&conf->UseMail), DT_BOOLEAN, ValidateEmailReg},
{"mail", "sendmailpath", "", new ValueContainerString(&conf->SendMailPath), DT_STRING, ValidateMail},
{"mail", "sendfrom", "", new ValueContainerString(&conf->SendFrom), DT_STRING, ValidateMail},
diff --git a/src/users.cpp b/src/users.cpp
index 684817d2e..f536115d4 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -455,6 +455,9 @@ void User::Login(NickCore *core)
core->Users.push_back(this);
this->UpdateHost();
+
+ if (this->server->IsSynced())
+ Log(this, "account") << "is now identified as " << this->nc->display;
}
/** Logout the user
@@ -463,6 +466,8 @@ void User::Logout()
{
if (!this->nc)
return;
+
+ Log(this, "account") << "is not longer identified as " << this->nc->display;
std::list<User *>::iterator it = std::find(this->nc->Users.begin(), this->nc->Users.end(), this);
if (it != this->nc->Users.end())