diff -Naur irc2.10.3p3-org/common/send.c irc2.10.3p3/common/send.c
--- irc2.10.3p3-org/common/send.c	2001-10-18 23:43:05.000000000 +0200
+++ irc2.10.3p3/common/send.c	2003-02-06 00:22:03.000000000 +0100
@@ -1391,6 +1391,9 @@
 	{ SCH_SERVICE,	"&SERVICES",	NULL },
 	{ SCH_DEBUG,	"&DEBUG",	NULL },
 	{ SCH_AUTH,	"&AUTH",	NULL },
+#ifdef CONNECTS
+	{ SCH_CONNECTS,	"&CONNECTS",	NULL },
+#endif
 };
 
 
diff -Naur irc2.10.3p3-org/common/struct_def.h irc2.10.3p3/common/struct_def.h
--- irc2.10.3p3-org/common/struct_def.h	2001-05-14 14:02:08.000000000 +0200
+++ irc2.10.3p3/common/struct_def.h	2003-02-06 00:36:37.000000000 +0100
@@ -771,7 +771,12 @@
 #define	SCH_SERVICE	9
 #define	SCH_DEBUG	10
 #define	SCH_AUTH	11
+#ifdef CONNECTS
+#define SCH_MAX		12
+#define SCH_CONNECTS	12
+#else
 #define	SCH_MAX		11
+#endif
 
 /* used for async dns values */
 
diff -Naur irc2.10.3p3-org/ircd/channel.c irc2.10.3p3/ircd/channel.c
--- irc2.10.3p3-org/ircd/channel.c	2001-07-07 16:29:33.000000000 +0200
+++ irc2.10.3p3/ircd/channel.c	2003-02-06 00:25:29.000000000 +0100
@@ -599,6 +599,12 @@
 	strcpy(chptr->topic, "SERVER MESSAGES: services joining and leaving");
 	add_user_to_channel(chptr, mp, CHFL_CHANOP);
 	chptr->mode.mode = smode;
+#ifdef CONNECTS
+	chptr = get_channel(mp, "&CONNECTS", CREATE);
+	strcpy(chptr->topic, "SERVER MESSAGES: connects");
+	add_user_to_channel(chptr, mp, CHFL_CHANOP);
+	chptr->mode.mode = smode;
+#endif
 #if defined(USE_IAUTH)
 	chptr = get_channel(mp, "&AUTH", CREATE);
 	strcpy(chptr->topic,
diff -Naur irc2.10.3p3-org/ircd/s_user.c irc2.10.3p3/ircd/s_user.c
--- irc2.10.3p3-org/ircd/s_user.c	2001-10-19 15:56:55.000000000 +0200
+++ irc2.10.3p3/ircd/s_user.c	2003-02-06 00:28:24.000000000 +0100
@@ -639,6 +639,10 @@
 		sprintf(buf, "%s!%s@%s", nick, user->username, user->host);
 		sptr->exitc = EXITC_REG;
 		sendto_one(sptr, rpl_str(RPL_WELCOME, nick), buf);
+#ifdef CONNECTS
+		sendto_flag(SCH_CONNECTS, "%s (%s) connected.", buf, sptr->info);
+#endif
+
 		/* This is a duplicate of the NOTICE but see below...*/
 		sendto_one(sptr, rpl_str(RPL_YOURHOST, nick),
 			   get_client_name(&me, FALSE), version);
diff -Naur irc2.10.3p3-org/support/config.h.dist irc2.10.3p3/support/config.h.dist
--- irc2.10.3p3-org/support/config.h.dist	2001-10-19 23:51:15.000000000 +0200
+++ irc2.10.3p3/support/config.h.dist	2003-02-06 00:22:03.000000000 +0100
@@ -592,3 +592,7 @@
 */
 #define	NOWRITEALARM	1
 
+/*
+Add local channel &CONNECTS (Neutrinka & Platynka)
+*/
+#undef CONNECTS
