View Issue Details

IDProjectCategoryView StatusLast Update
0004592unrealircdpublic2016-03-07 11:06
Reporterblank Assigned Tosyzop  
PrioritynormalSeverityminorReproducibilityhave not tried
Status resolvedResolutionfixed 
Product Version4.0.1 
Fixed in Version4.0.2 
Summary0004592: stackable blocks
Descriptionexample

except throttle {
        mask 107.161.19.53;
};

except throttle {
        mask 107.161.19.109;
};

except throttle {
        mask 109.169.31.4;
};

webirc {
        mask 107.161.19.53;
        password "password";
};

webirc {
        mask 107.161.19.109;
        password "password";
};

webirc {
        mask 109.169.31.4;
        password "password";
};

could be condensed to

except throttle {
        mask 107.161.19.53;
        mask 107.161.19.109;
        mask 109.169.31.4;
};

webirc {
        mask 107.161.19.53;
        mask 107.161.19.109;
        mask 109.169.31.4;
        password "password";
};
TagsNo tags attached.
3rd party modules

Activities

syzop

2016-03-07 11:06

administrator   ~0019126

There was some 'test' code preventing this to work for except throttle (the 'conf' code already had support for it). As for webirc, it already supported it.

[unreal40 6f36574] Permit multiple except throttle::mask's. Reported by blank (0004592).
https://github.com/unrealircd/unrealircd/commit/6f365747cb4bcf34018afd0f2b70b6758c187a28

Thanks :)

Issue History

Date Modified Username Field Change
2016-03-07 10:55 blank New Issue
2016-03-07 11:04 syzop Product Version => 4.0.1
2016-03-07 11:06 syzop Note Added: 0019126
2016-03-07 11:06 syzop Status new => resolved
2016-03-07 11:06 syzop Fixed in Version => 4.0.2
2016-03-07 11:06 syzop Resolution open => fixed
2016-03-07 11:06 syzop Assigned To => syzop