Python/Django SMTP DebugServer doesn't catch emails
问题 I'm starting the server (on mac) this way: python -m smtpd -n -c DebuggingServer localhost:9999 and i don't get any errors or any other notifications. I guess it means all is ok, correct me if i'm wrong. But when i send emails from django shell or from my app, using send_mail/mail_managers with fail_silently=False, i dont see any output on smtpd debug server. I dont get any SMTPErrors, and send_mail/mail_managers returns 1. I ran: lsof -i | grep LISTEN to see if anyone listens to port 9999,