I have a cgi script that is resending an email on a failed attempt 5-10 minutes after a user accesses a page. My thought was to do this using the at
command from a python call (os.system("at now + 5 minutes <<< ' python resend.py data'")
). Testing revealed:
$ sudo su www-data
$ at now
You do not have permission to use at.
$
What sort of grief am I exposing myself to if I remove user 'www-data' from the /etc/at.deny
file?