]> jfr.im git - irc.git/blob - software/RELEASES/ircservices/achurch.org/services/lists/ircservices/1999/000050.html
rename -> *.git
[irc.git] / software / RELEASES / ircservices / achurch.org / services / lists / ircservices / 1999 / 000050.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2 <HTML>
3 <HEAD>
4 <TITLE> [IRCServices] ### Need help ###
5 </TITLE>
6 <LINK REL="Index" HREF="index.html" >
7 <LINK REL="made" HREF="mailto:ircservices%40ircservices.za.net?Subject=%5BIRCServices%5D%20%23%23%23%20Need%20help%20%23%23%23&In-Reply-To=Pine.LNX.3.96.990915111337.3386A-100000%40ns">
8 <META NAME="robots" CONTENT="index,nofollow">
9 <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
10 <LINK REL="Previous" HREF="000049.html">
11 <LINK REL="Next" HREF="000051.html">
12 </HEAD>
13 <BODY BGCOLOR="#ffffff">
14 <H1>[IRCServices] ### Need help ###</H1>
15 <B>Jozenobio de Melo Brasil</B>
16 <A HREF="mailto:ircservices%40ircservices.za.net?Subject=%5BIRCServices%5D%20%23%23%23%20Need%20help%20%23%23%23&In-Reply-To=Pine.LNX.3.96.990915111337.3386A-100000%40ns"
17 TITLE="[IRCServices] ### Need help ###">jozeph at globalmedia.com.br
18 </A><BR>
19 <I>Wed Sep 15 09:10:23 PDT 1999</I>
20 <P><UL>
21 <LI>Previous message: <A HREF="000049.html">[IRCServices] ### Need help ###
22 </A></li>
23 <LI>Next message: <A HREF="000051.html">[IRCServices] ### Need help ###
24 </A></li>
25 <LI> <B>Messages sorted by:</B>
26 <a href="date.html#50">[ date ]</a>
27 <a href="thread.html#50">[ thread ]</a>
28 <a href="subject.html#50">[ subject ]</a>
29 <a href="author.html#50">[ author ]</a>
30 </LI>
31 </UL>
32 <HR>
33 <!--beginarticle-->
34 <PRE>Hi,
35
36 It's OK, but... when i kill the ./services, and restart it
37 again... it don't Join on the channels... :(
38 Please, help...
39
40 --
41 --------------------------------------------------------------------
42 \|/ --- \|/ | Jozen&#243;bio de Melo Brasil.
43 @~/ Oo \~@ | <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jozeph at globalmedia.com.br</A>
44 /_( \__/ )_\ | <A HREF="http://www.globalmedia.com.br/jozeph">http://www.globalmedia.com.br/jozeph</A>
45 \__U_/ | &quot; Onde a maioria vive com a bondade,
46 | a maldade da minoria tende sempre a desaparecer! &quot;
47 --------------------------------------------------------------------
48 The box said &quot;Windows 95, Windows NT 4.0, or better&quot;, so I installed
49 Linux.
50
51 On Wed, 15 Sep 1999, David Narayan wrote:
52
53 &gt;<i> You can use something like this in m_register (chanserv.c)
54 </I>&gt;<i>
55 </I>&gt;<i> /* ChanServ joins newly registered channel */
56 </I>&gt;<i> send_cmd(s_ChanServ, &quot;JOIN %s&quot;, chan)
57 </I>&gt;<i>
58 </I>&gt;<i> /* ChanServ ops itself */
59 </I>&gt;<i> send_cmd(s_ChanServ, &quot;MODE %s +o %s&quot;, chan, s_ChanServ) // ChanServ ops
60 </I>&gt;<i> itself
61 </I>&gt;<i>
62 </I>&gt;<i> Don't forget to add something similar so that ChanServ parts when they
63 </I>&gt;<i> drop the channel. You may also want to include protection so ChanServ
64 </I>&gt;<i> doesnt get flooded out or kicked or what not. In the Undernet ircd
65 </I>&gt;<i> X and W are set umode +d (deaf).
66 </I>&gt;<i>
67 </I>&gt;<i> In your IRCD you can change this part of m_join in channel.c
68 </I>&gt;<i>
69 </I>&gt;<i> if (sptr-&gt;user-&gt;joined &gt;= MAXCHANNELSPERUSER
70 </I>&gt;<i> {
71 </I>&gt;<i> sendto_one(sptr,err_str(ERR_TOOMANYCHANNELS), me.name, parv[0], name);
72 </I>&gt;<i> return 0
73 </I>&gt;<i> }
74 </I>&gt;<i>
75 </I>&gt;<i> /* Change to this */
76 </I>&gt;<i>
77 </I>&gt;<i> if (sptr-&gt;user-&gt;joined &gt;= MAXCHANNELSPERUSER &amp;&amp; !IsAnOper(sptr))
78 </I>&gt;<i> {
79 </I>&gt;<i> sendto_one(sptr,err_str(ERR_TOOMANYCHANNELS), me.name, parv[0], name);
80 </I>&gt;<i> return 0
81 </I>&gt;<i> }
82 </I>&gt;<i>
83 </I>&gt;<i> /* This allows opers to be in more then the MAXCHANNELS and since ChanServ
84 </I>&gt;<i> is an oper by default it will apply to it as well */
85 </I>&gt;<i>
86 </I>&gt;<i> Hope this helps.
87 </I>&gt;<i>
88 </I>&gt;<i> -----
89 </I>&gt;<i> David Narayan
90 </I>&gt;<i> Server Administrator
91 </I>&gt;<i> &lt;A HREF=&quot;<A HREF="http://www.chatfamily.com&quot;">http://www.chatfamily.com&quot;</A>&gt;<A HREF="http://www.chatfamily.com&lt;/A">http://www.chatfamily.com&lt;/A</A>&gt;
92 </I>&gt;<i>
93 </I>&gt;<i> On Wed, 15 Sep 1999, Jozenobio de Melo Brasil wrote:
94 </I>&gt;<i>
95 </I>&gt;<i> &gt; Ok,
96 </I>&gt;<i> &gt;
97 </I>&gt;<i> &gt; But a can especify: IsServices (you can join on many channels)...
98 </I>&gt;<i> &gt; Can you give me a on_join patch? :)
99 </I>&gt;<i> &gt;
100 </I>&gt;<i> &gt; Thanks
101 </I>&gt;<i> &gt; Jozeph
102 </I>&gt;<i> &gt;
103 </I>&gt;<i> &gt; --
104 </I>&gt;<i> &gt; --------------------------------------------------------------------
105 </I>&gt;<i> &gt; \|/ --- \|/ | Jozen&#243;bio de Melo Brasil.
106 </I>&gt;<i> &gt; @~/ Oo \~@ | <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jozeph at globalmedia.com.br</A>
107 </I>&gt;<i> &gt; /_( \__/ )_\ | &lt;A HREF=&quot;<A HREF="http://www.globalmedia.com.br/jozeph&quot;">http://www.globalmedia.com.br/jozeph&quot;</A>&gt;<A HREF="http://www.globalmedia.com.br/jozeph&lt;/A">http://www.globalmedia.com.br/jozeph&lt;/A</A>&gt;
108 </I>&gt;<i> &gt; \__U_/ | &quot; Onde a maioria vive com a bondade,
109 </I>&gt;<i> &gt; | a maldade da minoria tende sempre a desaparecer! &quot;
110 </I>&gt;<i> &gt; --------------------------------------------------------------------
111 </I>&gt;<i> &gt; The box said &quot;Windows 95, Windows NT 4.0, or better&quot;, so I installed
112 </I>&gt;<i> &gt; Linux.
113 </I>&gt;<i> &gt;
114 </I>&gt;<i> &gt; On Wed, 15 Sep 1999, Pinto, Joao Luis (J.) wrote:
115 </I>&gt;<i> &gt;
116 </I>&gt;<i> &gt; &gt; You can put hat on function on_join, however you have to make sure your
117 </I>&gt;<i> &gt; &gt; icrcd allows a user to join so much channels, because mostr ircd limits
118 </I>&gt;<i> &gt; &gt; users to join 10 or 20 channels at once.
119 </I>&gt;<i> &gt; &gt;
120 </I>&gt;<i> &gt; &gt; Regards, Jo&#227;o Pinto
121 </I>&gt;<i> &gt; &gt; &gt; App. Dev. &amp; Integration Group - Information Systems Dept.
122 </I>&gt;<i> &gt; &gt; &gt; Visteon Portugal (Palmela) - An Enterprise of Ford Motor Company
123 </I>&gt;<i> &gt; &gt; &gt;
124 </I>&gt;<i> &gt; &gt; * E-Mail: <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jpinto9 at visteon.com</A>
125 </I>&gt;<i> &gt; &gt; * Phone: 01-2339323
126 </I>&gt;<i> &gt; &gt; * Outside Portugal: 351-1-2339323
127 </I>&gt;<i> &gt; &gt; * FordNet: 8-233-9323
128 </I>&gt;<i> &gt; &gt;
129 </I>&gt;<i> &gt; &gt;
130 </I>&gt;<i> &gt; &gt;
131 </I>&gt;<i> &gt; &gt; -----Original Message-----
132 </I>&gt;<i> &gt; &gt; From: Jozenobio de Melo Brasil [&lt;A HREF=&quot;mailto:<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jozeph at globalmedia.com.br</A>&quot;&gt;mailto:<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jozeph at globalmedia.com.br</A>&lt;/A&gt;]
133 </I>&gt;<i> &gt; &gt; Sent: quarta-feira, 15 de setembro de 1999 3:10
134 </I>&gt;<i> &gt; &gt; To: <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">ircservices at ender.shadowfire.org</A>
135 </I>&gt;<i> &gt; &gt; Subject: [IRCServices] ### Need help ###
136 </I>&gt;<i> &gt; &gt;
137 </I>&gt;<i> &gt; &gt;
138 </I>&gt;<i> &gt; &gt; I would like to make with that the ChanServ enters in all the registered
139 </I>&gt;<i> &gt; &gt; channels of the network... similar process to the X/W of the Undernet
140 </I>&gt;<i> &gt; &gt;
141 </I>&gt;<i> &gt; &gt; Anyone can help me?
142 </I>&gt;<i> &gt; &gt;
143 </I>&gt;<i> &gt; &gt; --
144 </I>&gt;<i> &gt; &gt; --------------------------------------------------------------------
145 </I>&gt;<i> &gt; &gt; \|/ --- \|/ | Jozen&#243;bio de Melo Brasil.
146 </I>&gt;<i> &gt; &gt; @~/ Oo \~@ | <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jozeph at globalmedia.com.br</A>
147 </I>&gt;<i> &gt; &gt; /_( \__/ )_\ | &lt;A HREF=&quot;<A HREF="http://www.globalmedia.com.br/jozeph&quot;">http://www.globalmedia.com.br/jozeph&quot;</A>&gt;<A HREF="http://www.globalmedia.com.br/jozeph&lt;/A">http://www.globalmedia.com.br/jozeph&lt;/A</A>&gt;
148 </I>&gt;<i> &gt; &gt; \__U_/ | &quot; Onde a maioria vive com a bondade,
149 </I>&gt;<i> &gt; &gt; | a maldade da minoria tende sempre a desaparecer! &quot;
150 </I>&gt;<i> &gt; &gt; --------------------------------------------------------------------
151 </I>&gt;<i> &gt; &gt; The box said &quot;Windows 95, Windows NT 4.0, or better&quot;, so I installed
152 </I>&gt;<i> &gt; &gt; Linux.
153 </I>&gt;<i> &gt; &gt;
154 </I>&gt;<i> &gt; &gt; On Tue, 14 Sep 1999, CAC wrote:
155 </I>&gt;<i> &gt; &gt;
156 </I>&gt;<i> &gt; &gt; &gt; *****************************************************
157 </I>&gt;<i> &gt; &gt; &gt; TREINAMENTO METROLOGIC DO BRASIL - AUTOMA&#199;&#195;O COMERCIAL
158 </I>&gt;<i> &gt; &gt; &gt; *****************************************************
159 </I>&gt;<i> &gt; &gt; &gt;
160 </I>&gt;<i> &gt; &gt; &gt; Conhe&#231;a mais sobre os produtos da Metrologic do Brasil para automa&#231;&#227;o
161 </I>&gt;<i> &gt; &gt; &gt; comercial.
162 </I>&gt;<i> &gt; &gt; &gt; Teremos tamb&#233;m a participa&#231;&#227;o do Sr. Kiyochi Matsuda da Verifone.
163 </I>&gt;<i> &gt; &gt; &gt;
164 </I>&gt;<i> &gt; &gt; &gt; Palestrantes: Isac Berman - Diretor da Metrologic do Brasil
165 </I>&gt;<i> &gt; &gt; &gt; Tharis Nishida - Metrologic : Gerente Regi&#227;o
166 </I>&gt;<i> &gt; &gt; Nordeste
167 </I>&gt;<i> &gt; &gt; &gt;
168 </I>&gt;<i> &gt; &gt; &gt; Jorge Makoto Shintani - Gerente Comercial do Mini
169 </I>&gt;<i> &gt; &gt; &gt; Caixa Verifone
170 </I>&gt;<i> &gt; &gt; &gt;
171 </I>&gt;<i> &gt; &gt; &gt; PROGRAMA:
172 </I>&gt;<i> &gt; &gt; &gt;
173 </I>&gt;<i> &gt; &gt; &gt; 14h00 - 14h15 Credenciamento.
174 </I>&gt;<i> &gt; &gt; &gt;
175 </I>&gt;<i> &gt; &gt; &gt; 14h15 - 15h00 Informa&#231;&#245;es sobre a Metrologic do Brasil.
176 </I>&gt;<i> &gt; &gt; &gt;
177 </I>&gt;<i> &gt; &gt; &gt; 15h00 - 16h00 Informa&#231;&#245;es sobre a concorr&#234;ncia e mercado, vantagens em
178 </I>&gt;<i> &gt; &gt; &gt; trabalhar com a Metrologic do Brasil
179 </I>&gt;<i> &gt; &gt; &gt;
180 </I>&gt;<i> &gt; &gt; &gt; 16h00 - 16h20 Coffee-break
181 </I>&gt;<i> &gt; &gt; &gt;
182 </I>&gt;<i> &gt; &gt; &gt; 16h20 - 17h00 Mini Caixa Verifone - A solu&#231;&#227;o definitiva em TEF
183 </I>&gt;<i> &gt; &gt; &gt; (Transfer&#234;ncia Eletr&#244;nica de Fundos) vantagens em utilizar, politica de
184 </I>&gt;<i> &gt; &gt; &gt; pre&#231;os e op&#231;&#245;es de financiamento.
185 </I>&gt;<i> &gt; &gt; &gt;
186 </I>&gt;<i> &gt; &gt; &gt; 17h00 - 17h30 Apresenta&#231;&#227;o do SIC - Sistema Integrado Comercial. A Solu&#231;&#227;o
187 </I>&gt;<i> &gt; &gt; &gt; em frente de caixa e retaguarda com mais de 3.500 c&#243;pias comercializadas
188 </I>&gt;<i> &gt; &gt; em
189 </I>&gt;<i> &gt; &gt; &gt; todo o Brasil. Homologado pela Yanco e outros fabricantes de ECF.
190 </I>&gt;<i> &gt; &gt; &gt;
191 </I>&gt;<i> &gt; &gt; &gt; Inscri&#231;&#245;es abertas AT&#201; 14/09 &#192;S 18:00h - VAGAS LIMITADAS
192 </I>&gt;<i> &gt; &gt; &gt;
193 </I>&gt;<i> &gt; &gt; &gt; Inscreva-se j&#225;! PELO E-MAIL: <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">volnei at netmark.com.br</A> ou pelo telefone (81)
194 </I>&gt;<i> &gt; &gt; &gt; 339-2277
195 </I>&gt;<i> &gt; &gt; &gt;
196 </I>&gt;<i> &gt; &gt; &gt; N&#195;O PERCA A OPORTUNIDADE DE CONHECER AS NOVIDADES NO MERCADO DE AUTOMA&#199;&#195;O
197 </I>&gt;<i> &gt; &gt; &gt; !!
198 </I>&gt;<i> &gt; &gt; &gt;
199 </I>&gt;<i> &gt; &gt; &gt; Local: Audit&#243;rio interno Netmark
200 </I>&gt;<i> &gt; &gt; &gt; End. Av. Mascarenhas de Moraes, 4008A - Imbiribeira - Recife/PE
201 </I>&gt;<i> &gt; &gt; &gt; Data: 15 de Setembro (Quarta-feira)
202 </I>&gt;<i> &gt; &gt; &gt; Hor&#225;rio: 14h00 &#224;s 17h30
203 </I>&gt;<i> &gt; &gt; &gt; VAGAS LIMITADAS - (confirme sua presen&#231;a, por e-mail ou fax abaixo)
204 </I>&gt;<i> &gt; &gt; &gt;
205 </I>&gt;<i> &gt; &gt; &gt; ________________________________________
206 </I>&gt;<i> &gt; &gt; &gt; Volnei Rosa e Silva - Coord. Automa&#231;&#227;o Comercial
207 </I>&gt;<i> &gt; &gt; &gt; <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">volnei at netmark.com.br</A> / site: www.netmark.com.br
208 </I>&gt;<i> &gt; &gt; &gt; Netmark Distribuidora de Inform&#225;tica Ltda.
209 </I>&gt;<i> &gt; &gt; &gt; Telefax: 55 (0xx) 81 339-2277
210 </I>&gt;<i> &gt; &gt; &gt;
211 </I>&gt;<i> &gt; &gt;
212 </I>&gt;<i> &gt; &gt;
213 </I>&gt;<i> &gt; &gt; ---------------------------------------------------------------
214 </I>&gt;<i> &gt; &gt; To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
215 </I>&gt;<i> &gt; &gt; with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
216 </I>&gt;<i> &gt; &gt; ---------------------------------------------------------------
217 </I>&gt;<i> &gt; &gt; To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
218 </I>&gt;<i> &gt; &gt; with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
219 </I>&gt;<i> &gt; &gt;
220 </I>&gt;<i> &gt;
221 </I>&gt;<i> &gt; ---------------------------------------------------------------
222 </I>&gt;<i> &gt; To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
223 </I>&gt;<i> &gt; with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
224 </I>&gt;<i> &gt;
225 </I>&gt;<i>
226 </I>&gt;<i> ---------------------------------------------------------------
227 </I>&gt;<i> To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
228 </I>&gt;<i> with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
229 </I>&gt;<i>
230 </I>
231 ---------------------------------------------------------------
232 To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
233 with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
234
235 </PRE>
236
237 <!--endarticle-->
238 <HR>
239 <P><UL>
240 <!--threads-->
241 <LI>Previous message: <A HREF="000049.html">[IRCServices] ### Need help ###
242 </A></li>
243 <LI>Next message: <A HREF="000051.html">[IRCServices] ### Need help ###
244 </A></li>
245 <LI> <B>Messages sorted by:</B>
246 <a href="date.html#50">[ date ]</a>
247 <a href="thread.html#50">[ thread ]</a>
248 <a href="subject.html#50">[ subject ]</a>
249 <a href="author.html#50">[ author ]</a>
250 </LI>
251 </UL>
252
253 </body></html>