diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-04-12 11:02:33 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-04-12 11:02:33 +0000 |
commit | a7301e1d0ec5b87de4693eaf23eb4c474d489ac2 (patch) | |
tree | 4e72fe7180e631fb260b1acf6ad5aaf6775af492 | |
parent | 6a714bdb1595cdecb75a93271d12f606376e2adc (diff) |
- Remote server connection and split notices now go to new usermode +e
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1818 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | doc/example.conf | 4 | ||||
-rw-r--r-- | doc/example.efnet.conf | 4 | ||||
-rw-r--r-- | doc/modes.txt | 2 | ||||
-rw-r--r-- | help/opers/umode | 2 | ||||
-rw-r--r-- | src/s_user.c | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/doc/example.conf b/doc/example.conf index e0c3491..162c608 100644 --- a/doc/example.conf +++ b/doc/example.conf @@ -456,6 +456,7 @@ operator { * +C - cconn_full - Client connection/quit notices full * +D - deaf - Don't receive channel messages * +d - debug - See debugging notices + * +e - external - See remote server connection and split notices * +f - full - See auth{} block full notices * +G - softcallerid - Server Side Ignore for users not on your channels * +g - callerid - Server Side Ignore (for privmsgs etc) @@ -469,7 +470,6 @@ operator { * +s - servnotice - See general server notices * +u - unauth - See unauthorized client notices * +w - wallop - See server generated WALLOPS - * +x - external - See remote server connection and split notices * +y - spy - See LINKS, STATS, TRACE notices etc. * +z - operwall - See oper generated WALLOPS */ @@ -1144,6 +1144,7 @@ general { * +C - cconn_full - Client connection/quit notices full * +D - deaf - Don't receive channel messages * +d - debug - See debugging notices + * +e - external - See remote server connection and split notices * +f - full - See auth{} block full notices * +G - softcallerid - Server Side Ignore for users not on your channels * +g - callerid - Server Side Ignore (for privmsgs etc) @@ -1157,7 +1158,6 @@ general { * +s - servnotice - See general server notices * +u - unauth - See unauthorized client notices * +w - wallop - See server generated WALLOPS - * +x - external - See remote server connection and split notices * +y - spy - See LINKS, STATS, TRACE notices etc. * +z - operwall - See oper generated WALLOPS */ diff --git a/doc/example.efnet.conf b/doc/example.efnet.conf index cb5776a..f76e27c 100644 --- a/doc/example.efnet.conf +++ b/doc/example.efnet.conf @@ -480,6 +480,7 @@ operator { * +C - cconn_full - Client connection/quit notices full * +D - deaf - Don't receive channel messages * +d - debug - See debugging notices + * +e - external - See remote server connection and split notices * +f - full - See auth{} block full notices * +G - softcallerid - Server Side Ignore for users not on your channels * +g - callerid - Server Side Ignore (for privmsgs etc) @@ -493,7 +494,6 @@ operator { * +s - servnotice - See general server notices * +u - unauth - See unauthorized client notices * +w - wallop - See server generated WALLOPS - * +x - external - See remote server connection and split notices * +y - spy - See LINKS, STATS, TRACE notices etc. * +z - operwall - See oper generated WALLOPS */ @@ -1172,6 +1172,7 @@ general { * +C - cconn_full - Client connection/quit notices full * +D - deaf - Don't receive channel messages * +d - debug - See debugging notices + * +e - external - See remote server connection and split notices * +f - full - See auth{} block full notices * +G - softcallerid - Server Side Ignore for users not on your channels * +g - callerid - Server Side Ignore (for privmsgs etc) @@ -1185,7 +1186,6 @@ general { * +s - servnotice - See general server notices * +u - unauth - See unauthorized client notices * +w - wallop - See server generated WALLOPS - * +x - external - See remote server connection and split notices * +y - spy - See LINKS, STATS, TRACE notices etc. * +z - operwall - See oper generated WALLOPS */ diff --git a/doc/modes.txt b/doc/modes.txt index 0a5e4fb..906aa57 100644 --- a/doc/modes.txt +++ b/doc/modes.txt @@ -17,6 +17,7 @@ User Modes: +c - cconn - Client connection/quit notices +D - deaf - Don't receive channel messages +d - debug - See debugging notices ++e - external - See remote server connection and split notices +f - full - See I: line full notices +G - softcallerid - Server Side Ignore for users not on your channels +g - callerid - Server Side Ignore (see modeg.txt) @@ -33,7 +34,6 @@ User Modes: +s - servnotice - See general server notices +u - unauth - See unauthorized client notices +w - wallop - See server generated WALLOPS -+x - external - See remote server connection and split notices +y - spy - See LINKS, STATS (if configured), TRACE notices +z - operwall - See oper generated WALLOPS diff --git a/help/opers/umode b/help/opers/umode index f371a5e..e20225f 100644 --- a/help/opers/umode +++ b/help/opers/umode @@ -22,7 +22,7 @@ Usermodes: (* designates that the umode is oper only) +r - User has been registered and identified for its nick. This mode can be set by servers and services only. +R - Only registered clients may message you. - * +x - Can see new server introduction and split messages. + * +e - Can see new server introduction and split messages. * +b - Can see possible bot / join flood warnings. * +a - Is marked as a server admin in stats p/o. +D - "deaf": don't receive channel messages diff --git a/src/s_user.c b/src/s_user.c index 4725646..5c29525 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -119,7 +119,7 @@ unsigned int user_modes[256] = UMODE_BOTS, /* b */ UMODE_CCONN, /* c */ UMODE_DEBUG, /* d */ - 0, /* e */ + UMODE_EXTERNAL, /* e */ UMODE_FULL, /* f */ UMODE_CALLERID, /* g */ 0, /* h */ @@ -138,7 +138,7 @@ unsigned int user_modes[256] = UMODE_UNAUTH, /* u */ 0, /* v */ UMODE_WALLOP, /* w */ - UMODE_EXTERNAL, /* x */ + 0, /* x */ UMODE_SPY, /* y */ UMODE_OPERWALL, /* z 0x7A */ 0,0,0,0,0, /* 0x7B - 0x7F */ |