@@ -136,6 +136,7 @@ class IrcBot extends Adapter
136
136
realName : process .env .HUBOT_IRC_REALNAME
137
137
port : process .env .HUBOT_IRC_PORT
138
138
rooms : process .env .HUBOT_IRC_ROOMS .split (" ," )
139
+ ignoreUsers : process .env .HUBOT_IRC_IGNORE_USERS ? .split (" ," )
139
140
server : process .env .HUBOT_IRC_SERVER
140
141
password : process .env .HUBOT_IRC_PASSWORD
141
142
nickpass : process .env .HUBOT_IRC_NICKSERV_PASSWORD
@@ -201,6 +202,10 @@ class IrcBot extends Adapter
201
202
# this is a private message, let the 'pm' listener handle it
202
203
return
203
204
205
+ if from in ignoreUsers
206
+ # we'll ignore this message if it's from someone we want to ignore
207
+ return
208
+
204
209
console .log " From #{ from } to #{ to} : #{ message} "
205
210
206
211
user = self .createUser to, from
@@ -215,6 +220,11 @@ class IrcBot extends Adapter
215
220
216
221
bot .addListener ' action' , (from , to , message ) ->
217
222
console .log " * From #{ from } to #{ to} : #{ message} "
223
+
224
+ if from in ignoreUsers
225
+ # we'll ignore this message if it's from someone we want to ignore
226
+ return
227
+
218
228
user = self .createUser to, from
219
229
if user .room
220
230
console .log " #{ to} * #{ from } #{ message} "
@@ -232,6 +242,10 @@ class IrcBot extends Adapter
232
242
if process .env .HUBOT_IRC_PRIVATE
233
243
return
234
244
245
+ if nick in ignoreUsers
246
+ # we'll ignore this message if it's from someone we want to ignore
247
+ return
248
+
235
249
nameLength = options .nick .length
236
250
if message .slice (0 , nameLength).toLowerCase () != options .nick .toLowerCase ()
237
251
message = " #{ options .nick } #{ message} "
0 commit comments