-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes preparing for 2.2.0 release #184
Conversation
Remove "inline" from verbose_to_opers to fix compile errors.
Unless we're intending to only show local clients, myclient() isn't useful here.
src/s_user.c
Outdated
@@ -3412,6 +3418,11 @@ m_umode(aClient *cptr, aClient *sptr, int parc, char *parv[]) | |||
hash_check_watch(sptr, RPL_LOGON); | |||
} | |||
} | |||
else | |||
{ | |||
sendto_one(sptr, ":%s NOTICE %s :*** Notice -- Server has not received hostmask type, please contact SRA.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Arfie pointed out that we should change this to something other than "contact SRA" because this could be running on other networks outside of DALnet.
Plus, we don't want every single end-user contacting SRA for this, should something break. Maybe it should go to opers or a channel or something. Let's rethinking what makes sense.
Good suggestion, should we generalize to 'please contact the network's
staff via official help channels'?
Emilio Escobar / ***@***.***
…On Mon, Jul 5, 2021 at 1:08 PM Ryan Smith ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In src/s_user.c
<#184 (comment)>:
> @@ -3412,6 +3418,11 @@ m_umode(aClient *cptr, aClient *sptr, int parc, char *parv[])
hash_check_watch(sptr, RPL_LOGON);
}
}
+ else
+ {
+ sendto_one(sptr, ":%s NOTICE %s :*** Notice -- Server has not received hostmask type, please contact SRA.",
Arfie pointed out that we should change this to something other than
"contact SRA" because this could be running on other networks outside of
DALnet.
Plus, we don't want every single end-user contacting SRA for this, should
something break. Maybe it should go to opers or a channel or something.
Let's rethinking what makes sense.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#184 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAEQ2SO42PCUBOMNYHZ3V7DTWIGLFANCNFSM45IAGRWQ>
.
|
…handling this in the module.
No description provided.