Can I use a python script as external acl helper ? I have tested it quickly by adding these lines to squid.conf:<div><br></div><div><div>external_acl_type python %SRC /usr/bin/python ~/rekt.py</div><div>acl external_acl_helpers external python</div><div>http_access allow external_acl_helpers</div></div><div><br></div><div>And this is rekt.py:</div><div><br></div><div>#!/usr/bin/env python</div><div>print "OK"</div><div><br></div><div>As I sadly expected it did not work after restarting squid. Excuse my inadequate knowledge guys, how can I do this ?</div>