[Coder-com] Deactivating ident requests in ircd-ircu ?
Hello coder-com, I hope this list is still active and my message does not offend any list rules. Had some looks in the archives, but could not find a search there... I am running a private chat server just for me and my colleagues, and I would like to deactivate the initial ident-request when connecting to the server, because we use J2ME chat-clients often, and they don't provide identd servers. I couldn't find a setting in the config to deactivate that. Is there a simple way to do it? Thanks a lot, Martin ___ Coder-com mailing list [email protected] http://undernet.sbg.org/mailman/listinfo/coder-com
Re: [Coder-com] Deactivating ident requests in ircd-ircu ?
On sön, 2006-09-03 at 21:57 +0200, Martin Schuster wrote: > Hello coder-com, > > I hope this list is still active and my message does not offend any > list rules. Had some looks in the archives, but could not find a > search there... > > I am running a private chat server just for me and my colleagues, and > I would like to deactivate the initial ident-request when connecting > to the server, because we use J2ME chat-clients often, and they don't > provide identd servers. > > I couldn't find a setting in the config to deactivate that. Is there a > simple way to do it? AUTH_TIMEOUT * Type: integer * Default: 9 This is the maximum number of seconds to wait for the ident lookup and the DNS query to succeed. On older (pre 2.10.11.06) servers this was hard coded to 60 seconds. So, "AUTH_TIMEOUT" = "1"; or so in the feature section for current ircu. -- Ian Kumlien -- http://pomac.netswarm.net signature.asc Description: This is a digitally signed message part ___ Coder-com mailing list [email protected] http://undernet.sbg.org/mailman/listinfo/coder-com
Re: [Coder-com] Deactivating ident requests in ircd-ircu ?
Martin Schuster writes: > Hello coder-com, > > I hope this list is still active and my message does not offend any > list rules. Had some looks in the archives, but could not find a > search there... > > I am running a private chat server just for me and my colleagues, and > I would like to deactivate the initial ident-request when connecting > to the server, because we use J2ME chat-clients often, and they don't > provide identd servers. > > I couldn't find a setting in the config to deactivate that. Is there a > simple way to do it? CVS HEAD (what will become the next stable release) has a NOIDENT feature. The supporting code is pretty simple (one line in each of ircd_features.h, ircd_features.c and s_auth.c). You could apply that code to 2.10.12.08 easily. Entrope ___ Coder-com mailing list [email protected] http://undernet.sbg.org/mailman/listinfo/coder-com
