]> jfr.im git - irc.git/blobdiff - software/!RELEASES/ircservices/achurch.org/services/lists/ircservices/1999/static/gitweb.css
RELEASE -> !RELEASE
[irc.git] / software / !RELEASES / ircservices / achurch.org / services / lists / ircservices / 1999 / static / gitweb.css
diff --git a/software/RELEASES/ircservices/achurch.org/services/lists/ircservices/1999/000049.html b/software/RELEASES/ircservices/achurch.org/services/lists/ircservices/1999/000049.html
deleted file mode 100644 (file)
index c74fa28..0000000
+++ /dev/null
@@ -1,229 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
-<HTML>
- <HEAD>
-   <TITLE> [IRCServices] ### Need help ###
-   </TITLE>
-   <LINK REL="Index" HREF="index.html" >
-   <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.4.00.9909150805100.22183-100000%40jozeph.globalmedia.com.br">
-   <META NAME="robots" CONTENT="index,nofollow">
-   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
-   <LINK REL="Previous"  HREF="000048.html">
-   <LINK REL="Next"  HREF="000050.html">
- </HEAD>
- <BODY BGCOLOR="#ffffff">
-   <H1>[IRCServices] ### Need help ###</H1>
-    <B>David Narayan</B> 
-    <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.4.00.9909150805100.22183-100000%40jozeph.globalmedia.com.br"
-       TITLE="[IRCServices] ### Need help ###">jestercm at chatfamily.com
-       </A><BR>
-    <I>Wed Sep 15 08:24:27 PDT 1999</I>
-    <P><UL>
-        <LI>Previous message: <A HREF="000048.html">[IRCServices] ### Need help ###
-</A></li>
-        <LI>Next message: <A HREF="000050.html">[IRCServices] ### Need help ###
-</A></li>
-         <LI> <B>Messages sorted by:</B> 
-              <a href="date.html#49">[ date ]</a>
-              <a href="thread.html#49">[ thread ]</a>
-              <a href="subject.html#49">[ subject ]</a>
-              <a href="author.html#49">[ author ]</a>
-         </LI>
-       </UL>
-    <HR>  
-<!--beginarticle-->
-<PRE>You can use something like this in m_register (chanserv.c)
-
-/* ChanServ joins newly registered channel */
-send_cmd(s_ChanServ, &quot;JOIN %s&quot;, chan)
-
-/* ChanServ ops itself */
-send_cmd(s_ChanServ, &quot;MODE %s +o %s&quot;, chan, s_ChanServ) // ChanServ ops
-itself
-
-Don't forget to add something similar so that ChanServ parts when they
-drop the channel. You may also want to include protection so ChanServ
-doesnt get flooded out or kicked or what not.  In the Undernet ircd
-X and W are set umode +d (deaf).
-
-In your IRCD you can change this part of m_join in channel.c
-
- if (sptr-&gt;user-&gt;joined &gt;= MAXCHANNELSPERUSER
-  {
-   sendto_one(sptr,err_str(ERR_TOOMANYCHANNELS), me.name, parv[0], name);
-   return 0
-  }
-
-/* Change to this */
-
- if (sptr-&gt;user-&gt;joined &gt;= MAXCHANNELSPERUSER &amp;&amp; !IsAnOper(sptr))
-  {
-   sendto_one(sptr,err_str(ERR_TOOMANYCHANNELS), me.name, parv[0], name);
-   return 0
-  }
-
-/* This allows opers to be in more then the MAXCHANNELS and since ChanServ
-   is an oper by default it will apply to it as well */
-
-Hope this helps.
-
------
-David Narayan
-Server Administrator
-<A HREF="http://www.chatfamily.com">http://www.chatfamily.com</A>
-
-On Wed, 15 Sep 1999, Jozenobio de Melo Brasil wrote:
-
-&gt;<i> Ok,
-</I>&gt;<i> 
-</I>&gt;<i>    But a can especify: IsServices (you can join on many channels)...
-</I>&gt;<i>    Can you give me a on_join patch? :)
-</I>&gt;<i> 
-</I>&gt;<i> Thanks
-</I>&gt;<i> Jozeph
-</I>&gt;<i> 
-</I>&gt;<i> --
-</I>&gt;<i> --------------------------------------------------------------------
-</I>&gt;<i>  \|/ --- \|/   | Jozen&#243;bio de Melo Brasil.
-</I>&gt;<i>   @~/ Oo \~@   | <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jozeph at globalmedia.com.br</A>
-</I>&gt;<i>  /_( \__/ )_\  | &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;
-</I>&gt;<i>     \__U_/     | &quot; Onde a maioria vive com a bondade,
-</I>&gt;<i>                |  a maldade da minoria tende sempre a desaparecer! &quot;
-</I>&gt;<i> --------------------------------------------------------------------
-</I>&gt;<i> The box said &quot;Windows 95, Windows NT 4.0, or better&quot;, so I installed
-</I>&gt;<i> Linux.
-</I>&gt;<i> 
-</I>&gt;<i> On Wed, 15 Sep 1999, Pinto, Joao Luis (J.) wrote:
-</I>&gt;<i> 
-</I>&gt;<i> &gt; You can put hat on function on_join, however you have to make sure your
-</I>&gt;<i> &gt; icrcd allows a user to join so much channels, because mostr ircd limits
-</I>&gt;<i> &gt; users to join 10 or 20 channels at once.
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; Regards, Jo&#227;o Pinto
-</I>&gt;<i> &gt; &gt; App. Dev. &amp; Integration Group - Information Systems Dept.
-</I>&gt;<i> &gt; &gt; Visteon Portugal (Palmela) - An Enterprise of Ford Motor Company
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; *     E-Mail: <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jpinto9 at visteon.com</A>
-</I>&gt;<i> &gt; *     Phone: 01-2339323
-</I>&gt;<i> &gt; *     Outside Portugal: 351-1-2339323
-</I>&gt;<i> &gt; *     FordNet: 8-233-9323
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; -----Original Message-----
-</I>&gt;<i> &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;]
-</I>&gt;<i> &gt; Sent: quarta-feira, 15 de setembro de 1999 3:10
-</I>&gt;<i> &gt; To: <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">ircservices at ender.shadowfire.org</A>
-</I>&gt;<i> &gt; Subject: [IRCServices] ### Need help ###
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; I would like to make with that the ChanServ enters in all the registered
-</I>&gt;<i> &gt; channels of the network... similar process to the X/W of the Undernet
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; Anyone can help me?
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; --
-</I>&gt;<i> &gt; --------------------------------------------------------------------
-</I>&gt;<i> &gt;  \|/ --- \|/   | Jozen&#243;bio de Melo Brasil.
-</I>&gt;<i> &gt;   @~/ Oo \~@   | <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">jozeph at globalmedia.com.br</A>
-</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;
-</I>&gt;<i> &gt;     \__U_/     | &quot; Onde a maioria vive com a bondade,
-</I>&gt;<i> &gt;                |  a maldade da minoria tende sempre a desaparecer! &quot;
-</I>&gt;<i> &gt; --------------------------------------------------------------------
-</I>&gt;<i> &gt; The box said &quot;Windows 95, Windows NT 4.0, or better&quot;, so I installed
-</I>&gt;<i> &gt; Linux.
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; On Tue, 14 Sep 1999, CAC wrote:
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; &gt; *****************************************************
-</I>&gt;<i> &gt; &gt; TREINAMENTO METROLOGIC DO BRASIL  -  AUTOMA&#199;&#195;O COMERCIAL
-</I>&gt;<i> &gt; &gt; *****************************************************
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; Conhe&#231;a mais sobre os produtos da Metrologic do Brasil para automa&#231;&#227;o
-</I>&gt;<i> &gt; &gt; comercial.
-</I>&gt;<i> &gt; &gt; Teremos tamb&#233;m a participa&#231;&#227;o do Sr. Kiyochi Matsuda da Verifone.
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; Palestrantes:   Isac Berman   -  Diretor da Metrologic do Brasil
-</I>&gt;<i> &gt; &gt;                       Tharis Nishida -  Metrologic : Gerente Regi&#227;o
-</I>&gt;<i> &gt; Nordeste
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt;                       Jorge Makoto Shintani - Gerente Comercial do Mini
-</I>&gt;<i> &gt; &gt; Caixa Verifone
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; PROGRAMA:
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; 14h00 - 14h15 Credenciamento.
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; 14h15 - 15h00 Informa&#231;&#245;es sobre a Metrologic do Brasil.
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; 15h00 - 16h00 Informa&#231;&#245;es sobre a concorr&#234;ncia e mercado, vantagens em
-</I>&gt;<i> &gt; &gt; trabalhar com a Metrologic do Brasil
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; 16h00 - 16h20 Coffee-break
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; 16h20 - 17h00 Mini Caixa Verifone - A solu&#231;&#227;o definitiva em TEF
-</I>&gt;<i> &gt; &gt; (Transfer&#234;ncia Eletr&#244;nica de Fundos) vantagens em utilizar, politica de
-</I>&gt;<i> &gt; &gt; pre&#231;os e op&#231;&#245;es de financiamento.
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; 17h00 - 17h30 Apresenta&#231;&#227;o do SIC - Sistema Integrado Comercial. A Solu&#231;&#227;o
-</I>&gt;<i> &gt; &gt; em frente de caixa e retaguarda com mais de 3.500 c&#243;pias comercializadas
-</I>&gt;<i> &gt; em
-</I>&gt;<i> &gt; &gt; todo o Brasil. Homologado pela Yanco e outros fabricantes de ECF.
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; Inscri&#231;&#245;es abertas AT&#201; 14/09 &#192;S 18:00h - VAGAS LIMITADAS
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &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)
-</I>&gt;<i> &gt; &gt; 339-2277
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; N&#195;O PERCA A OPORTUNIDADE  DE CONHECER AS NOVIDADES NO MERCADO DE AUTOMA&#199;&#195;O
-</I>&gt;<i> &gt; &gt; !!
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; Local: Audit&#243;rio interno Netmark
-</I>&gt;<i> &gt; &gt; End. Av. Mascarenhas de Moraes, 4008A - Imbiribeira - Recife/PE
-</I>&gt;<i> &gt; &gt; Data: 15 de Setembro (Quarta-feira)
-</I>&gt;<i> &gt; &gt; Hor&#225;rio: 14h00 &#224;s 17h30
-</I>&gt;<i> &gt; &gt; VAGAS LIMITADAS - (confirme sua presen&#231;a, por e-mail ou fax abaixo)
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; &gt; ________________________________________
-</I>&gt;<i> &gt; &gt; Volnei Rosa e Silva - Coord. Automa&#231;&#227;o Comercial
-</I>&gt;<i> &gt; &gt; <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">volnei at netmark.com.br</A> / site: www.netmark.com.br
-</I>&gt;<i> &gt; &gt; Netmark Distribuidora de Inform&#225;tica Ltda.
-</I>&gt;<i> &gt; &gt; Telefax: 55 (0xx) 81 339-2277
-</I>&gt;<i> &gt; &gt; 
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; 
-</I>&gt;<i> &gt; ---------------------------------------------------------------
-</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>
-</I>&gt;<i> &gt; with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
-</I>&gt;<i> &gt; ---------------------------------------------------------------
-</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>
-</I>&gt;<i> &gt; with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
-</I>&gt;<i> &gt; 
-</I>&gt;<i> 
-</I>&gt;<i> ---------------------------------------------------------------
-</I>&gt;<i> To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
-</I>&gt;<i> with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
-</I>&gt;<i> 
-</I>
----------------------------------------------------------------
-To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
-with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
-
-</PRE>
-
-<!--endarticle-->
-    <HR>
-    <P><UL>
-        <!--threads-->
-       <LI>Previous message: <A HREF="000048.html">[IRCServices] ### Need help ###
-</A></li>
-       <LI>Next message: <A HREF="000050.html">[IRCServices] ### Need help ###
-</A></li>
-         <LI> <B>Messages sorted by:</B> 
-              <a href="date.html#49">[ date ]</a>
-              <a href="thread.html#49">[ thread ]</a>
-              <a href="subject.html#49">[ subject ]</a>
-              <a href="author.html#49">[ author ]</a>
-         </LI>
-       </UL>
-
-</body></html>