]> jfr.im git - irc.git/blame - software/RELEASES/ircservices/achurch.org/services/lists/ircservices/2008/005606.html
init
[irc.git] / software / RELEASES / ircservices / achurch.org / services / lists / ircservices / 2008 / 005606.html
CommitLineData
3bd189cb
JR
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2<HTML>
3 <HEAD>
4 <TITLE> [IRCServices] Kick war with ChanServ, for the 135175631861th time..
5 </TITLE>
6 <LINK REL="Index" HREF="index.html" >
7 <LINK REL="made" HREF="mailto:ircservices%40ircservices.za.net?Subject=%5BIRCServices%5D%20Kick%20war%20with%20ChanServ%2C%0A%09for%20the%20135175631861th%20time..&In-Reply-To=478019f1.43742%40msgid.achurch.org">
8 <META NAME="robots" CONTENT="index,nofollow">
9 <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
10 <LINK REL="Previous" HREF="005605.html">
11 <LINK REL="Next" HREF="005607.html">
12 </HEAD>
13 <BODY BGCOLOR="#ffffff">
14 <H1>[IRCServices] Kick war with ChanServ, for the 135175631861th time..</H1>
15 <B>Robin Burchell</B>
16 <A HREF="mailto:ircservices%40ircservices.za.net?Subject=%5BIRCServices%5D%20Kick%20war%20with%20ChanServ%2C%0A%09for%20the%20135175631861th%20time..&In-Reply-To=478019f1.43742%40msgid.achurch.org"
17 TITLE="[IRCServices] Kick war with ChanServ, for the 135175631861th time..">robin at en2no.com
18 </A><BR>
19 <I>Sat Jan 5 16:05:56 PST 2008</I>
20 <P><UL>
21 <LI>Previous message: <A HREF="005605.html">[IRCServices] Kick war with ChanServ, for the 135175631861th time..
22</A></li>
23 <LI>Next message: <A HREF="005607.html">[IRCServices] Kick war with ChanServ, for the 135175631861th time..
24</A></li>
25 <LI> <B>Messages sorted by:</B>
26 <a href="date.html#5606">[ date ]</a>
27 <a href="thread.html#5606">[ thread ]</a>
28 <a href="subject.html#5606">[ subject ]</a>
29 <a href="author.html#5606">[ author ]</a>
30 </LI>
31 </UL>
32 <HR>
33<!--beginarticle-->
34<PRE>No +I masks, three +e masks are set, neither of which match me..
35
36#helpers *!*@herring.chatspike.net set by Om (Sat Nov 03 23:13:31)
37#helpers *!*@helper.chatspike.net set by Om (Sat Nov 03 23:13:27)
38#helpers *!*@tortoisegod.chatspike.net set by Om (Sat Nov 03 23:13:21)
39#helpers End of Channel Exception List
40-
41#helpers End of Channel Invite Exception List
42
43w00t is <A HREF="http://lists.ircservices.za.net/mailman/listinfo/ircservices">w00t at globop.chatspike.net</A> * Master of all trades; jack of none
44&lt;- being me.
45
46Explicit invite - (as in /invite?) - aren't used on that channel. It's
47also perhaps worthy of note that /invite only overrides ban on some
48software.
49
50I imagine the problem was caused as some IRCds will propegate the ban
51anyway (no duplicates checking) from a server to server link, so I
52guess that could be construed as a problem of sorts, though not a
53major one.
54
55Given the infrequency of this problem, I don't mind waiting until the
56list archives are back up for you to check, by all means. :)
57
58On Jan 5, 2008 11:52 PM, Andrew Church &lt;<A HREF="http://lists.ircservices.za.net/mailman/listinfo/ircservices">achurch at achurch.org</A>&gt; wrote:
59&gt;<i> &gt;I understand it must be frustrating to have an issue like this that's
60</I>&gt;<i> &gt;so hard to track down, but it is equally frustrating to get bit in the
61</I>&gt;<i> &gt;ass by it. Isn't it wise to assume that if they are joining an
62</I>&gt;<i> &gt;existing channel that a ban matching them doesn't exist anyway
63</I>&gt;<i> &gt;(otherwise how are they joining?)
64</I>&gt;<i>
65</I>&gt;<i> +e, +I, explicit INVITE, possibly other methods. Originally, I didn't
66</I>&gt;<i> bother checking for the ban, but apparently it caused a problem, because
67</I>&gt;<i> I added the check in 4.5pre0:
68</I>&gt;<i>
69</I>&gt;<i> 2001/01/11 Fixed duplicate adding of bans when auto-kicking a user
70</I>&gt;<i> from a channel. Reported by James &lt;<A HREF="http://lists.ircservices.za.net/mailman/listinfo/ircservices">daemus at evilcode.com</A>&gt;
71</I>&gt;<i> --- chanserv.c 11 Jan 2001 00:03:56 -0000 1.10
72</I>&gt;<i> +++ chanserv.c 11 Jan 2001 04:29:13 -0000 1.11
73</I>&gt;<i> @@ -670,10 +670,13 @@
74</I>&gt;<i> #else
75</I>&gt;<i> }
76</I>&gt;<i> #endif
77</I>&gt;<i> - av[1] = &quot;+b&quot;;
78</I>&gt;<i> - av[2] = mask;
79</I>&gt;<i> - send_cmd(s_ChanServ, &quot;MODE %s +b %s %lu&quot;, chan, mask, time(NULL));
80</I>&gt;<i> - do_cmode(s_ChanServ, 3, av);
81</I>&gt;<i> + /* Apparently invites can get around bans, so check for ban first */
82</I>&gt;<i> + if (!chan_has_ban(mask)) {
83</I>&gt;<i> + av[1] = &quot;+b&quot;;
84</I>&gt;<i> + av[2] = mask;
85</I>&gt;<i> + send_cmd(s_ChanServ, &quot;MODE %s +b %s %lu&quot;, chan, mask, time(NULL));
86</I>&gt;<i> + do_cmode(s_ChanServ, 3, av);
87</I>&gt;<i> + }
88</I>&gt;<i> free(mask);
89</I>&gt;<i> send_cmd(s_ChanServ, &quot;KICK %s %s :%s&quot;, chan, user-&gt;nick, reason);
90</I>&gt;<i> if (stay) {
91</I>&gt;<i>
92</I>&gt;<i> The list archives are down at the moment, so I can't check exactly what
93</I>&gt;<i> the problem was, whether it was a serious issue or just cosmetic; I'm
94</I>&gt;<i> hesitant to remove the check without knowing more. (Of course, you're
95</I>&gt;<i> welcome to try removing it yourself and seeing what happens.)
96</I>&gt;<i>
97</I>&gt;<i>
98</I>&gt;<i> --Andrew Church
99</I>&gt;<i> <A HREF="http://lists.ircservices.za.net/mailman/listinfo/ircservices">achurch at achurch.org</A>
100</I>&gt;<i> <A HREF="http://achurch.org/">http://achurch.org/</A>
101</I>&gt;<i>
102</I>&gt;<i> ------------------------------------------------------------------
103</I>&gt;<i> To unsubscribe or change your subscription options, visit:
104</I>&gt;<i> <A HREF="http://lists.ircservices.za.net/mailman/listinfo/ircservices">http://lists.ircservices.za.net/mailman/listinfo/ircservices</A>
105</I>&gt;<i>
106</I>
107
108
109--
110Robin Burchell
111mob: +447702671419
112msn: <A HREF="http://lists.ircservices.za.net/mailman/listinfo/ircservices">msn at viroteck.net</A>
113web: <A HREF="http://www.en2no.com">http://www.en2no.com</A>
114</PRE>
115
116
117<!--endarticle-->
118 <HR>
119 <P><UL>
120 <!--threads-->
121 <LI>Previous message: <A HREF="005605.html">[IRCServices] Kick war with ChanServ, for the 135175631861th time..
122</A></li>
123 <LI>Next message: <A HREF="005607.html">[IRCServices] Kick war with ChanServ, for the 135175631861th time..
124</A></li>
125 <LI> <B>Messages sorted by:</B>
126 <a href="date.html#5606">[ date ]</a>
127 <a href="thread.html#5606">[ thread ]</a>
128 <a href="subject.html#5606">[ subject ]</a>
129 <a href="author.html#5606">[ author ]</a>
130 </LI>
131 </UL>
132
133</body></html>