]> jfr.im git - irc/rqf/shadowircd.git/commitdiff
[svn] Move sno_channeljoin to unsupported, due to the privacy
authorjilles <redacted>
Thu, 24 May 2007 15:10:06 +0000 (08:10 -0700)
committerjilles <redacted>
Thu, 24 May 2007 15:10:06 +0000 (08:10 -0700)
issue and the fact that any oper with admin or hidden_admin
can load extensions.

ChangeLog
doc/example.conf
doc/reference.conf
extensions/Makefile.in
include/serno.h
unsupported/Makefile.in
unsupported/sno_channeljoin.c [moved from extensions/sno_channeljoin.c with 88% similarity]

index 1a74ed209df9675e68d6602486450618c46e3b57..d2bd460d2dfbbc80831dd92b2b82476f9284c6f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+nenolod     2007/05/24 04:28:36 UTC    (20070524-3476)
+  Log:
+  - createoperonly: like createauthonly, but checks opered status instead of authed status
+  
+
+  Changes:     Modified:
+  +41 -0       trunk/extensions/Makefile.in (File Modified) 
+  + -          trunk/extensions/createoperonly.c (File Added) 
+
+
 nenolod     2007/05/24 04:16:02 UTC    (20070524-3474)
   Log:
   - sno_channeljoin: implements snomask +j and sends channel join notices there from local users
index 454f966504a4ebb5e28515a97d318cb51f31923b..b1843c5320383c95b207d10b427b96b337319e86 100755 (executable)
@@ -4,7 +4,7 @@
  * Copyright (C) 2002-2005 ircd-ratbox development team
  * Copyright (C) 2005-2006 charybdis development team
  *
- * $Id: example.conf 3474 2007-05-24 04:16:02Z nenolod $
+ * $Id: example.conf 3478 2007-05-24 15:10:06Z jilles $
  *
  * See reference.conf for more information.
  */
@@ -23,7 +23,6 @@
 #loadmodule "extensions/m_findforwards.so";
 #loadmodule "extensions/m_identify.so";
 #loadmodule "extensions/no_oper_invis.so";
-#loadmodule "extensions/sno_channeljoin.so";
 #loadmodule "extensions/sno_farconnect.so";
 #loadmodule "extensions/sno_globalkline.so";
 #loadmodule "extensions/sno_globaloper.so";
index ff9182141268033cbb8f5a55a7697b2a12021b00..70acd4f06b187b19223590f50aa9b1e249346776 100755 (executable)
@@ -6,7 +6,7 @@
  *
  * Written by ejb, wcampbel, db, leeh and others
  *
- * $Id: reference.conf 3474 2007-05-24 04:16:02Z nenolod $
+ * $Id: reference.conf 3478 2007-05-24 15:10:06Z jilles $
  */
 
 /* IMPORTANT NOTES:
@@ -54,7 +54,6 @@
  * Find channel forwards                          -- m_findforwards.so
  * /identify support                              -- m_identify.so
  * Opers cannot be invisible (umode +i)           -- no_oper_invis.so
- * Channel join notices (snomask +j)              -- sno_channeljoin.so
  * Far connection notices (snomask +F)            -- sno_farconnect.so
  * Remote k/d/g/x line active notices             -- sno_globalkline.so
  * Remote oper up notices                         -- sno_globaloper.so
@@ -73,7 +72,6 @@
 #loadmodule "extensions/m_findforwards.so";
 #loadmodule "extensions/m_identify.so";
 #loadmodule "extensions/no_oper_invis.so";
-#loadmodule "extensions/sno_channeljoin.so";
 #loadmodule "extensions/sno_farconnect.so";
 #loadmodule "extensions/sno_globalkline.so";
 #loadmodule "extensions/sno_globaloper.so";
index 90de382fba0d42b04c2518d3e87b00d1380c1e61..20220cf756bd97523a74ed9089273bfa4b9f41ce 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Makefile.in for ircd/contrib
 #
-# $Id: Makefile.in 3476 2007-05-24 04:28:36Z nenolod $
+# $Id: Makefile.in 3478 2007-05-24 15:10:06Z jilles $
 #
 CC             = @CC@
 RM             = @RM@
@@ -38,7 +38,6 @@ SRCS =                          \
   extb_extgecos.c              \
   hurt.c                       \
   ip_cloaking.c                        \
-  sno_channeljoin.c            \
   sno_farconnect.c             \
   sno_globalkline.c            \
   sno_globaloper.c             \
index 9d334261bbc0c07fa4cb473798426c10844741fc..6d68ababf8b8d308a6ffdab54a5ff0117fa02915 100644 (file)
@@ -1 +1 @@
-#define SERNO "20070524-3474"
+#define SERNO "20070524-3476"
index 2ebf514874aeff2fadb6cf6a257e3ad45e7faff7..60ee719bfb223bc5210d34baa043a3df72e2eb5c 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Makefile.in for ircd/unsupported
 #
-# $Id: Makefile.in 1425 2006-05-23 16:41:33Z jilles $
+# $Id: Makefile.in 3478 2007-05-24 15:10:06Z jilles $
 #
 CC             = @CC@
 RM             = @RM@
@@ -28,7 +28,8 @@ CPPFLAGS      = ${INCLUDES} @CPPFLAGS@
 
 SRCS =                          \
   m_clearchan.c                        \
-  m_force.c
+  m_force.c                    \
+  sno_channeljoin.c
 
 OBJS = ${SRCS:.c=.so}
 
similarity index 88%
rename from extensions/sno_channeljoin.c
rename to unsupported/sno_channeljoin.c
index f54a84dd092d74a1633b2232caca0c625c60ddc4..9a9831f575d44a4eec0f72d39f509c703a944551 100644 (file)
@@ -5,7 +5,7 @@
  * To be discussed:
  *    + part notices?
  *
- * $Id: sno_channeljoin.c 3474 2007-05-24 04:16:02Z nenolod $
+ * $Id: sno_channeljoin.c 3478 2007-05-24 15:10:06Z jilles $
  */
 
 #include "stdinc.h"
@@ -42,4 +42,4 @@ fini(void)
        snomask_modes['j'] = 0;
 }
 
-DECLARE_MODULE_AV1(sno_channeljoin, init, fini, NULL, NULL, channeljoin_hfnlist, "$Revision: 3474 $");
+DECLARE_MODULE_AV1(sno_channeljoin, init, fini, NULL, NULL, channeljoin_hfnlist, "$Revision: 3478 $");