I know in ratelimit, you can define a method within queues... for example, modparam("ratelimit", "queue", "3:INVITE") to match on INVITE method.
With pipelimit, is the method called from the config, such as:
if(is_method("INVITE")) { # Checking limit on INVITE if (!pl_check("$au", "traildrop", "$var(limita)")) { pl_drop(); exit; } }
if(is_method("REGISTER")) { # Checking limit on REGISTER if (!pl_check("$au", "traildrop", "$var(limitb)")) { pl_drop(); exit; } }