This file is indexed.

/usr/share/doc/epic5/antiflooding is in epic5 2.0.1-1build3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
i'm contemplating whether i should have one hardcoded rule which
+models the traditiional efnet model, or if i shoudl generalize it and make
+you fill out complicated /set's that would permit a wide variety of flooding
+models.

eg, "score for each byte", "score for each line", "Time Interval in
+milliseconds", "Reduction of score per time interval", "Score above which to
+throttle"

then, for each line you send to the server, it will calculate a
+"score" for that line, based on its length and a flat "per line" score.  The
+line will be sent to the server and a counter will be incremented.

after every certain milliseconds, the counter will be decremented
+by the specified amount.

if, when a line is sent to the server, the current counter is
+greater than the thresshold, the line will be queued (throttled) instead of
+dispatched.

that way, i can create a timer that will fire but only when you're
+flooding.

that's the generalized solution.

the more (efnet specific) solution is just to prohibit you from
+sending more than 2 lines per second.