Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
2k views

What is the easiest way for a Java application to receive incoming email?

Sending email is easy with commons-email, and with spring it is even easier. What about receiving incoming email? Are there easy to use APIs that allow to bounce emails, process attachments, etc.
2
votes
2answers
956 views

Python: smtpd (or alternative) for production mail receiving?

I'm looking to do various processing of email - eg. inspect the headers, and if they meet some criteria (look like spam), drop the connection, or inspect the recipient list and perform special ...
1
vote
2answers
90 views

Server recommendations (smtp) [closed]

I'm currently working on a quite small project. I'm basing my work on smtpd.py but slowly moving toward something completely different. This is a smtp server. It currently receive and can relay ...
1
vote
1answer
374 views

Python asyncore vs plain old C

i'm stress testing 2 different projects: one is proxsmtpd - smtp proxy written in C And the other one, smtp_proxy.py, which i developed under 1 hour, with use of asyncore and smtpd python modules. I ...
1
vote
1answer
426 views

Add SMTP AUTH support to Python smtpd library… can't override the method?

So, I wanted to extend the Python smtpd SMTPServer class so that it could handle SMTP AUTH connections. Seemed simple enough... So, it looked like I could just start like this: def smtp_EHLO(self, ...
0
votes
0answers
12 views

Python SMTPD library override version

I'd like to emit my own message when someone connects to this smtp server. import smtpd import asyncore class FakeSMTPServer(smtpd.SMTPServer): __version__ = 'TEST EMAIL SERVER' def ...
0
votes
1answer
156 views

Sending/Receiving E-mail with Python smtpd module

I'm trying to make a simple smtp server using the Python smtpd module. I can receive an e-mail and print it out. I try to send an e-mail back to the person who sent me the e-mail with a hello world ...
0
votes
2answers
216 views

How to parse e-mail bounce notifications

What options do I have to parse the e-mails that have bounced? I am receiving the bounce notification from e-mail servers but don't know what to do with it. Thanks
0
votes
1answer
246 views

postfix SMTPD relay problems while sending

Ok So I set up a server as a mail server, using postfix + mysql +courier I'm using mysql for the virtual domains and users maildir. IT is now working properly except for one part , and that is the ...
0
votes
1answer
174 views

Postfix/SMTPD: how to check/view the contents of rejected emails

Our mail server is receiving a regular email addressed to a non-existing recipient at our domain, so it is being rejected. Is there a way to see the contents of the email?
0
votes
2answers
917 views

Is there a Python MTA (Mail transfer agent)

Just wondering if there is a Python MTA. I took a look at smtpd but they all look like forwarders without any functionality.