Some days ago I have successfully activated f-secure. Just for the case, anybody is interested in the /usr/local/bin/pmg-custom-check, that's what I'm using:
#!/bin/sh
if [ "$#" -ne 2 ]; then
echo "usage: $0 APIVERSION QUEUEFILENAME" 1>&2
exit 1
fi
apiver="$1"
shift
if [ "$apiver" != "v1"...