接受所有传入电子邮件,从多个身份发送消息
我正在开展一个与响应垃圾邮件有关的研究项目。我想实现以下功能: 1. 邮件服务器,以易于访问的形式保存所有传入电子邮件消息 - 硬盘驱动器、数据库等。例如,如果有人向 [电子邮件受保护] 或[电子邮件受保护],应接受并保存此邮件。 2. 我应该能够从同一服务器/帐户回复这些消息。例如,邮件被发送到 [email protected],因此垃圾邮件发送者会收到来自同一地址的响应。
对任何可以帮助我的软件/软件包有什么建议吗?如果我能用 Java 或 Python 与它们交互,那就更好了。
谢谢。
I am working on a research project that has to do with responding to spam. I want to implement the following functionality:
1. A mail server that saves all incoming email messages in an easily accessable form - hard drive, database, etc. For example, if someone sends a message to [email protected] or [email protected], this message should be accepted and saved.
2. I should be able to reply to these messages from the same server/account. E.g. a message gets delivered to [email protected], so the spammer receives a response from the same address.
Any suggestions on any software / packages that can help me with that? If I can interface with them with Java or Python, it would be even better.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用fuglu(一个用于邮件过滤器的Python框架)运行postfix邮件服务器。编写一个可以实现您想要的功能的插件将非常简单。
但请记住:在大多数情况下,回复垃圾邮件并不是一个好主意。发件人地址几乎总是伪造的,因此回复会发送给一些无辜的受害者,而不是垃圾邮件发送者的收件箱,并且您的服务器可能会被列入黑名单 反向散射。
you could run a postfix mailserver with fuglu,a python framework for mail filters. it would be very simple to write a plugin that does what you want.
but remember: responding to spam is in most cases a bad idea. the sender address is almost always forged, so the reply goes some innocent victim instead of the spammers inbox and your server could be blacklisted for backscattering.