I have the following simple python code on Linux
import smtpd
proxy = smtpd.PureProxy(('0.0.0.0',25), None)
which runs fine when run as sudo, but gives an socket.error: [Errno 13] Permission denied
error when running as standard user. My question: How can I make this snippet to run with a normal user.
Thanks,
Alex