]> jfr.im git - irc.git/blob - software/RELEASES/ircservices/achurch.org/services/lists/ircservices/2000/000462.html
rename -> *.git
[irc.git] / software / RELEASES / ircservices / achurch.org / services / lists / ircservices / 2000 / 000462.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2 <HTML>
3 <HEAD>
4 <TITLE> [IRCServices] Services to /msg Instead of /notice
5 </TITLE>
6 <LINK REL="Index" HREF="index.html" >
7 <LINK REL="made" HREF="mailto:ircservices%40ircservices.za.net?Subject=%5BIRCServices%5D%20Services%20to%20/msg%20Instead%20of%20/notice&In-Reply-To=001f01bf7205%24bf152460%2456ba5e18%40kc.rr.com">
8 <META NAME="robots" CONTENT="index,nofollow">
9 <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
10 <LINK REL="Previous" HREF="000461.html">
11 <LINK REL="Next" HREF="000463.html">
12 </HEAD>
13 <BODY BGCOLOR="#ffffff">
14 <H1>[IRCServices] Services to /msg Instead of /notice</H1>
15 <B>Andrew Kempe</B>
16 <A HREF="mailto:ircservices%40ircservices.za.net?Subject=%5BIRCServices%5D%20Services%20to%20/msg%20Instead%20of%20/notice&In-Reply-To=001f01bf7205%24bf152460%2456ba5e18%40kc.rr.com"
17 TITLE="[IRCServices] Services to /msg Instead of /notice">andrewk at icon.co.za
18 </A><BR>
19 <I>Tue Feb 8 01:10:27 PST 2000</I>
20 <P><UL>
21 <LI>Previous message: <A HREF="000461.html">[IRCServices] Services to /msg Instead of /notice
22 </A></li>
23 <LI>Next message: <A HREF="000463.html">[IRCServices] Services to /msg Instead of /notice
24 </A></li>
25 <LI> <B>Messages sorted by:</B>
26 <a href="date.html#462">[ date ]</a>
27 <a href="thread.html#462">[ thread ]</a>
28 <a href="subject.html#462">[ subject ]</a>
29 <a href="author.html#462">[ author ]</a>
30 </LI>
31 </UL>
32 <HR>
33 <!--beginarticle-->
34 <PRE>Please post patches DIRECTLY to people - not to the list. This code will NOT
35 be supported by this mailing list.
36
37 The _only_ reason I would consider making changes like this is for webtv
38 users. However, someone needs to contact the webtv people get them to make
39 their irc client RFC compliant. We should never break the RFC guidelines
40 just to be compatible with those who are not RFC compliant.
41
42 Andrew
43
44 &gt;<i> -----Original Message-----
45 </I>&gt;<i> From: <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">owner-ircservices at ender.shadowfire.org</A>
46 </I>&gt;<i> [mailto:<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">owner-ircservices at ender.shadowfire.org</A>]On Behalf Of Fuelie Admin
47 </I>&gt;<i> Sent: 08 February 2000 09:26
48 </I>&gt;<i> To: <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">ircservices at ender.shadowfire.org</A>
49 </I>&gt;<i> Subject: Re: [IRCServices] Services to /msg Instead of /notice
50 </I>&gt;<i>
51 </I>&gt;<i>
52 </I>&gt;<i> TRY THIS
53 </I>&gt;<i> Is was givien to me when I had the same Question!
54 </I>&gt;<i> ----------------------------------------------------------------------
55 </I>&gt;<i>
56 </I>&gt;<i> send.c:/* Send a NOTICE from the given source to the given nick. */
57 </I>&gt;<i> send.c:void notice(const char *source, const char *dest, const char *fmt,
58 </I>&gt;<i> ...)
59 </I>&gt;<i> send.c: snprintf(buf, sizeof(buf), &quot;NOTICE %s :%s&quot;, dest, fmt);
60 </I>&gt;<i> send.c:/* Send a NULL-terminated array of text as NOTICEs. */
61 </I>&gt;<i> send.c:void notice_list(const char *source, const char *dest, const char
62 </I>&gt;<i> **text)
63 </I>&gt;<i> send.c: /* Have to kludge around an ircII bug here: if a notice includes
64 </I>&gt;<i> send.c: notice(source, dest, *text);
65 </I>&gt;<i> send.c: notice(source, dest, &quot; &quot;);
66 </I>&gt;<i> send.c:/* Send a message in the user's selected language to the user using
67 </I>&gt;<i> NOTICE. */
68 </I>&gt;<i> send.c:void notice_lang(const char *source, User *dest, int message, ...)
69 </I>&gt;<i> send.c: send_cmd(source, &quot;NOTICE %s :%s&quot;, dest-&gt;nick, *t ? t : &quot; &quot;);
70 </I>&gt;<i> send.c:/* Like notice_lang(), but replace %S by the source. This
71 </I>&gt;<i> is an ugly
72 </I>&gt;<i> hack
73 </I>&gt;<i> send.c:void notice_help(const char *source, User *dest, int message, ...)
74 </I>&gt;<i> send.c: send_cmd(source, &quot;NOTICE %s :%s&quot;, dest-&gt;nick, *outbuf ? outbuf : &quot;
75 </I>&gt;<i> &quot;);
76 </I>&gt;<i>
77 </I>&gt;<i> perhaps line numbers would help but as you can see if you change all the
78 </I>&gt;<i> uppercase NOTICE to PRIVMSG you will effectively change your services from
79 </I>&gt;<i> using a notice reply to a MSG reply on everything as long as you use the
80 </I>&gt;<i> standard source, if I had more time I'd make a patch for you but
81 </I>&gt;<i> I hope this
82 </I>&gt;<i> works out for you, please let me know if it doesn't and I shall
83 </I>&gt;<i> research it
84 </I>&gt;<i> more.
85 </I>&gt;<i>
86 </I>&gt;<i> Matt Bradbury
87 </I>&gt;<i> /server orbit.phix.com
88 </I>&gt;<i>
89 </I>&gt;<i>
90 </I>&gt;<i>
91 </I>&gt;<i>
92 </I>&gt;<i> Thank You,
93 </I>&gt;<i> Founder of &lt;A HREF=&quot;<A HREF="http://www.Fuelie.Net&quot;">http://www.Fuelie.Net&quot;</A>&gt;<A HREF="http://www.Fuelie.Net&lt;/A">http://www.Fuelie.Net&lt;/A</A>&gt;
94 </I>&gt;<i> Fuelie.net Chat Network!
95 </I>&gt;<i> &gt;
96 </I>&gt;<i> &gt; &gt; Hi there Im new to this list , first of all let me say Hi to
97 </I>&gt;<i> everyone ,
98 </I>&gt;<i> &gt; Nice
99 </I>&gt;<i> &gt; &gt; talking to you all.
100 </I>&gt;<i> &gt; &gt; I need some help on how can I make my IRCd services make /msg
101 </I>&gt;<i> instead of
102 </I>&gt;<i> &gt; &gt; /notice when a user asks help from the services.
103 </I>&gt;<i> &gt; &gt; Can anyone out there help please?
104 </I>&gt;<i> &gt; &gt; Thanks in advance.
105 </I>&gt;<i> &gt; &gt; Ely
106 </I>&gt;<i> &gt; &gt;
107 </I>&gt;<i> &gt; &gt;
108 </I>&gt;<i> &gt; &gt; ---------------------------------------------------------------
109 </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>
110 </I>&gt;<i> &gt; &gt; with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
111 </I>&gt;<i> &gt; &gt;
112 </I>&gt;<i> &gt;
113 </I>&gt;<i> &gt; ---------------------------------------------------------------
114 </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>
115 </I>&gt;<i> &gt; with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
116 </I>&gt;<i>
117 </I>&gt;<i> ---------------------------------------------------------------
118 </I>&gt;<i> To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
119 </I>&gt;<i> with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
120 </I>&gt;<i>
121 </I>
122 ---------------------------------------------------------------
123 To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at ender.shadowfire.org</A>
124 with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
125
126 </PRE>
127
128 <!--endarticle-->
129 <HR>
130 <P><UL>
131 <!--threads-->
132 <LI>Previous message: <A HREF="000461.html">[IRCServices] Services to /msg Instead of /notice
133 </A></li>
134 <LI>Next message: <A HREF="000463.html">[IRCServices] Services to /msg Instead of /notice
135 </A></li>
136 <LI> <B>Messages sorted by:</B>
137 <a href="date.html#462">[ date ]</a>
138 <a href="thread.html#462">[ thread ]</a>
139 <a href="subject.html#462">[ subject ]</a>
140 <a href="author.html#462">[ author ]</a>
141 </LI>
142 </UL>
143
144 </body></html>