Guys,
When I into at any channel, #Ajuda as a example, I receive:
Now talking on #Ajuda
* myirc.network sets mode +n on #Ajuda
* myirc.network sets mode +t on #Ajuda
I registered this channel and I receive:
* ChanServ sets mode +r on #Ajuda
john registered his nick and received this:
* john sets mode: +r
When john try to access the #ajuda, he receive:
* You were kicked from #Ajuda by ChanServ (You are not permitted to be on this channel.)
#Ajuda +nrt
If I ( channel founder ) leave the #Ajuda and enter again, I have this:
* Now talking on #ajuda
* myirc.network sets mode +n on #ajuda
* myirc.network sets mode +t on #ajuda
* services.myirc.network removes channel operator status from "abner"
* *** Notice -- TS for #ajuda changed from 1508277878 to 1508277137
* ChanServ sets ban on *!*@abner-ip
* ChanServ sets mode +r on #ajuda
* ChanServ sets mode +n on #ajuda
* ChanServ sets mode +t on #ajuda
When I clear the modes using:
/msg operserv mode #Ajuda CLEAR ALL
I have:
ChanServ removes ban on *!*@john-ip
* ChanServ sets mode -n on #Ajuda
* ChanServ sets mode -r on #Ajuda
* ChanServ sets mode -t on #Ajuda
When john try again into in #Ajuda, I have:
* john (~john@john-ip) has joined
* ChanServ has kicked john from #Ajuda (You are not permitted to be on this channel.)
* ChanServ sets ban on *!*@john-ip
* ChanServ sets mode +r on #Ajuda
* ChanServ sets mode +n on #Ajuda
* ChanServ sets mode +t on #Ajuda
Chanserv disobey the CLEAR command. Every channel that i register I have this "problem", my confs:
ircd.conf
/*
* service {}: specifies a server which may act as a network service
*
* NOTE: it is very important that every server on the network
* has the same service {} block.
*/
service {
/* name: the actual name of the service. Wildcards are not allowed. */
name = "services.myirc.network";
/* The 'name' directives can be stacked. */
name = "stats.example.net";
};
chanserv.conf
/*
* Modes that are required to be set and only set on all registered channels.
* These modes can not be locked or unlocked. The registered channel mode is
* automatically always required, if such a mode exists.
*/
require = "r"
nickserv.conf
/*
* If set, Services will set the channel modes a user has access to upon identifying, assuming
* they are not already set.
*
* This directive is optional.
*/
modeonid = yes
/*
* If set, Services will set these user modes on any user who identifies.
*
* This directive is optional.
*/
modesonid = "+r"
Thank you for any help.