mirror of
https://github.com/anope/anope.git
synced 2026-07-02 06:26:38 +02:00
Add a config option to disable sasl
This commit is contained in:
@@ -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},
|
||||
|
||||
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user