Disable anti-flooding in inspIRCd












4















How do I go about disabling anti-flooding in inspIRCd? It is only an annoyance on a private chat.



No anti-flooding modules are enabled and all flooding-limits have been set to maximum - yet it still blocks posting for example an ascii image.



Any pointers in the right direction?










share|improve this question



























    4















    How do I go about disabling anti-flooding in inspIRCd? It is only an annoyance on a private chat.



    No anti-flooding modules are enabled and all flooding-limits have been set to maximum - yet it still blocks posting for example an ascii image.



    Any pointers in the right direction?










    share|improve this question

























      4












      4








      4


      1






      How do I go about disabling anti-flooding in inspIRCd? It is only an annoyance on a private chat.



      No anti-flooding modules are enabled and all flooding-limits have been set to maximum - yet it still blocks posting for example an ascii image.



      Any pointers in the right direction?










      share|improve this question














      How do I go about disabling anti-flooding in inspIRCd? It is only an annoyance on a private chat.



      No anti-flooding modules are enabled and all flooding-limits have been set to maximum - yet it still blocks posting for example an ascii image.



      Any pointers in the right direction?







      irc ircd






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 23 '15 at 20:07









      cxoucxou

      137110




      137110






















          1 Answer
          1






          active

          oldest

          votes


















          0














          The short answer: you can't.



          However:




          You should also include a flood="x" line which indicates the number of
          lines a user may place into their buffer at once before they are
          disconnected for excess flood. This feature can not be disabled,
          however it can be set to extremely high values, rendering it
          effectively disabled. A recommended value is 10. A counter is
          maintained for each user which is reset every 'threshold' seconds and
          specifying this threshold value with threshold="X" indicates how often
          the counter is reset. For example, with flood="5" and threshold="8",
          the user may not send more than 5 lines in 8 secs.




          (Source: https://brainbox.cc/stash/projects/INSP/repos/inspircd/browse/docs/inspircd.conf.example?at=a3491c9be4bf2c9899bde9c85da9e7d2c4fd694e)



          This paragraph refers to the "connect" tag in /etc/inspircd/inspircd.conf which might look like this:



          <connect allow="*" timeout="60"
          flood="999999" threshold="1"
          pingfreq="120"
          sendq="262144" recvq="8192"
          localmax="3" globalmax="3">


          Unfortunately, I have not yet tried this out myself. Apparently, InspIRCd has every conceivable feature except good documentation, and having a "flood" Attribute in a "connect" tags made me assume that it refers to Connection flooding, not message flooding. So after three days of searching, I just built rate limiting into my bot.






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f205268%2fdisable-anti-flooding-in-inspircd%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            The short answer: you can't.



            However:




            You should also include a flood="x" line which indicates the number of
            lines a user may place into their buffer at once before they are
            disconnected for excess flood. This feature can not be disabled,
            however it can be set to extremely high values, rendering it
            effectively disabled. A recommended value is 10. A counter is
            maintained for each user which is reset every 'threshold' seconds and
            specifying this threshold value with threshold="X" indicates how often
            the counter is reset. For example, with flood="5" and threshold="8",
            the user may not send more than 5 lines in 8 secs.




            (Source: https://brainbox.cc/stash/projects/INSP/repos/inspircd/browse/docs/inspircd.conf.example?at=a3491c9be4bf2c9899bde9c85da9e7d2c4fd694e)



            This paragraph refers to the "connect" tag in /etc/inspircd/inspircd.conf which might look like this:



            <connect allow="*" timeout="60"
            flood="999999" threshold="1"
            pingfreq="120"
            sendq="262144" recvq="8192"
            localmax="3" globalmax="3">


            Unfortunately, I have not yet tried this out myself. Apparently, InspIRCd has every conceivable feature except good documentation, and having a "flood" Attribute in a "connect" tags made me assume that it refers to Connection flooding, not message flooding. So after three days of searching, I just built rate limiting into my bot.






            share|improve this answer




























              0














              The short answer: you can't.



              However:




              You should also include a flood="x" line which indicates the number of
              lines a user may place into their buffer at once before they are
              disconnected for excess flood. This feature can not be disabled,
              however it can be set to extremely high values, rendering it
              effectively disabled. A recommended value is 10. A counter is
              maintained for each user which is reset every 'threshold' seconds and
              specifying this threshold value with threshold="X" indicates how often
              the counter is reset. For example, with flood="5" and threshold="8",
              the user may not send more than 5 lines in 8 secs.




              (Source: https://brainbox.cc/stash/projects/INSP/repos/inspircd/browse/docs/inspircd.conf.example?at=a3491c9be4bf2c9899bde9c85da9e7d2c4fd694e)



              This paragraph refers to the "connect" tag in /etc/inspircd/inspircd.conf which might look like this:



              <connect allow="*" timeout="60"
              flood="999999" threshold="1"
              pingfreq="120"
              sendq="262144" recvq="8192"
              localmax="3" globalmax="3">


              Unfortunately, I have not yet tried this out myself. Apparently, InspIRCd has every conceivable feature except good documentation, and having a "flood" Attribute in a "connect" tags made me assume that it refers to Connection flooding, not message flooding. So after three days of searching, I just built rate limiting into my bot.






              share|improve this answer


























                0












                0








                0







                The short answer: you can't.



                However:




                You should also include a flood="x" line which indicates the number of
                lines a user may place into their buffer at once before they are
                disconnected for excess flood. This feature can not be disabled,
                however it can be set to extremely high values, rendering it
                effectively disabled. A recommended value is 10. A counter is
                maintained for each user which is reset every 'threshold' seconds and
                specifying this threshold value with threshold="X" indicates how often
                the counter is reset. For example, with flood="5" and threshold="8",
                the user may not send more than 5 lines in 8 secs.




                (Source: https://brainbox.cc/stash/projects/INSP/repos/inspircd/browse/docs/inspircd.conf.example?at=a3491c9be4bf2c9899bde9c85da9e7d2c4fd694e)



                This paragraph refers to the "connect" tag in /etc/inspircd/inspircd.conf which might look like this:



                <connect allow="*" timeout="60"
                flood="999999" threshold="1"
                pingfreq="120"
                sendq="262144" recvq="8192"
                localmax="3" globalmax="3">


                Unfortunately, I have not yet tried this out myself. Apparently, InspIRCd has every conceivable feature except good documentation, and having a "flood" Attribute in a "connect" tags made me assume that it refers to Connection flooding, not message flooding. So after three days of searching, I just built rate limiting into my bot.






                share|improve this answer













                The short answer: you can't.



                However:




                You should also include a flood="x" line which indicates the number of
                lines a user may place into their buffer at once before they are
                disconnected for excess flood. This feature can not be disabled,
                however it can be set to extremely high values, rendering it
                effectively disabled. A recommended value is 10. A counter is
                maintained for each user which is reset every 'threshold' seconds and
                specifying this threshold value with threshold="X" indicates how often
                the counter is reset. For example, with flood="5" and threshold="8",
                the user may not send more than 5 lines in 8 secs.




                (Source: https://brainbox.cc/stash/projects/INSP/repos/inspircd/browse/docs/inspircd.conf.example?at=a3491c9be4bf2c9899bde9c85da9e7d2c4fd694e)



                This paragraph refers to the "connect" tag in /etc/inspircd/inspircd.conf which might look like this:



                <connect allow="*" timeout="60"
                flood="999999" threshold="1"
                pingfreq="120"
                sendq="262144" recvq="8192"
                localmax="3" globalmax="3">


                Unfortunately, I have not yet tried this out myself. Apparently, InspIRCd has every conceivable feature except good documentation, and having a "flood" Attribute in a "connect" tags made me assume that it refers to Connection flooding, not message flooding. So after three days of searching, I just built rate limiting into my bot.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 7 hours ago









                KlawsKlaws

                1011




                1011






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f205268%2fdisable-anti-flooding-in-inspircd%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Histoire des bourses de valeurs

                    Why is there Russian traffic in my log files?

                    Rename multiple files to decrement number in file name?