[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Bans (Was: invites)



On Sun, 22 Mar 1998, Christophe Kalt wrote:

> Yet another change I'm considering for channels is extending
> the use of invites.
> 
> right now, /invite only overrides +i mode,
> I'm thinking of having it override +b and +l modes as well,
> when issued by a channel operator.
> 
> comments?

Good idea.

Would be very usefull with something like:

b *!*@*.com
B *!*@*.megatrends.com
b *!*@american.megatrends.com

B = nonban (override *.com ban)

It should stop on first match, but I don't know how to find out the order
to do the checking.

Null,

-- Robert Martin-Legène (RM59), Network Manager, DKnet (AS2109), Denmark

   main(){int a[2],b[2];pipe(a);pipe(b);if(fork()){dup2(a[0],0);dup2(b[1],1)
   ;}else{dup2(b[0],0);dup2(a[1],1);write(1,"R",1);}execlp("cat","cat",0);}