将电子邮件从 postfix 转发到 java 应用程序
在我们当前的实现中,我们将所有相关电子邮件转发到触发 perl 脚本的邮件别名,该脚本正在处理电子邮件。在 /etc/aliases 中,我们有这样的内容:
emailuser | process_email.pl
当我们用 java 应用程序替换 perl 脚本时,在每封电子邮件上启动 java vn 比仅仅启动 perl 解释器要消耗更多资源。
emailuser | process_email.java
最好将电子邮件传递给 java 应用程序的运行实例。但我怎样才能做到这一点呢?
In our current implementation we are forewarding all relevant emails to a mail alias that triggers a perl script, which is processing the email. In /etc/aliases we have something like:
emailuser | process_email.pl
When we replace the perl script by a java application, starting a java vn on every email is much more resource intensive than just starting up a perl interpreter.
emailuser | process_email.java
It would be better to pass the email to a runnig instance of the java application. But how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让 java 应用程序打开一个命名管道并将邮件通过管道传输到其中。
Have the java app open a named pipe and pipe the mail into it.