- Description:
- On Create move tagged spam
- Condition:
- On Create
- Action:
- User Defined
- Template:
- Global template: Blank
- Stage:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| * Parse RESP (REdis Serialization Protocol) | |
| */ | |
| function read_resp($fp = null) { | |
| // File descripter to the Redis server connection | |
| // (static to limit recursion stack size) | |
| static $conn = null; | |
| if (!$conn) $conn = $fp; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/conf/4.x/solrconfig.xml | |
| +++ b/conf/4.x/solrconfig.xml | |
| @@ -64,13 +64,6 @@ | |
| <lib dir="./lib" /> | |
| --> | |
| - <!-- A dir option by itself adds any files found in the directory to | |
| - the classpath, this is useful for including all jars in a | |
| - directory. | |
| - --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # | |
| # Eric Searcy | |
| # github.com/emsearcy | |
| """Split out prior year archives to "rotate" the mbox. | |
| This script is intended to be run as a bin/withlist script, i.e. | |
| % bin/withlist -l -r rotatembox listname |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Script to fix serialized strings directly with DB access | |
| $host = ''; | |
| $db = ''; | |
| $user = ''; | |
| $pass = ''; | |
| $table = ''; | |
| $column = ''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env perl | |
| # | |
| # Script to check netfilter conntrack usage | |
| # https://gist.github.com/gists/2885777 | |
| # emsearcy@osuosl.org | |
| # | |
| # Usage: check_conntrack -w WARN_USED% -c CRIT_USED% | |
| # | |
| # Returns: | |
| # UNKNOWN if no conntrack support found |
NewerOlder