The SMTP server accepts network connection requests and performs zero or more SMTP transactions per connection. Man Page
Questions tagged [smtpd]
51 questions
0
votes
1 answer
broken smtpd auth after update Cyrus SASL
after migrating from depreciated smtpd_recipient_restrictions to smtpd_relay_restrictions, outbound smtp hangs for users and these are the errors I find in the logs. "auxpropfunc error version mismatch with plug-in" and a "_sasl_plugin_load failed…

brad
- 870
- 2
- 13
- 38
0
votes
1 answer
Can't find stderr print in python smtpd
I am using smtpd and its catching ValueError exceptions I raise in process_message and printing a description to stderr instead of raising the error.
What it prints out is the string I construct the ValueError with.
So if I do this in…

Anthony Lozano
- 571
- 1
- 5
- 16
0
votes
1 answer
Python SMTP Server with SSL: handshake error
I use lib secure_smtpd for create SMTP server. When I generate certificate and use it for SSL connection I catch exception (for test I use Opera mail client and The Bat!):
SSLError: _ssl.c:489: The handshake operation timed out
When I test use…

Eugene
- 1,690
- 3
- 16
- 30
0
votes
1 answer
smtp proxy in python requires root authentication to run
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:…

Alex
- 41,580
- 88
- 260
- 469
0
votes
1 answer
Logging SMTP connections with Twisted
Python newbie here. I'm writing an SMTP server using Twisted and twisted.mail.smtp. I'd like to log incoming connections and possibly dump them when there are too many concurrent connections. Basically, I want ConsoleMessageDelivery.connectionMade()…

Mark Fletcher
- 701
- 1
- 14
- 36
-1
votes
1 answer
Cannot start local SMTP Debugging Server with Python SMTPD module
I'm unable to start local SMTP Debugging Server using this line of code:
python -m smtpd -c DebuggingServer -n localhost:1025
Whenever I run this command on Spyder's command window, I get a syntax error.
Can anyone help me in this?
Thank you in…

Shreya Pamecha
- 1
- 1