mysql - 在数据库中保存后缀电子邮件副本

标签 mysql linux email postfix-mta

我目前有一个客户的邮件和网络服务器。 我使用 postfix 作为邮件服务器,将电子邮件地址转发给正确的用户。例如,john.doe@mydomain.com 被转发到 john.doe@gmail.com。

现在我希望能够在网站上显示邮件,但也能不断将邮件发送给用户。所以,我想知道是否可以选择将邮件副本发送到 mysql 数据库?

这是我当前的ma​​in.cf:

# Settings
myhostname = mydomain.com

# Spam adressen
#smtpd_recipient_restrictions = check_sender_access hash:/etc/postfix/sender_access

# KLJ Waregem aliasses
virtual_alias_domains = mydomain.com
virtual_alias_maps = mysql:/etc/postfix/mysql-mydomain.cf

# Mails via Mandrill
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_use_tls = yes
relayhost = [smtp.mandrillapp.com]

alias_maps = hash:/etc/aliases

# Spam quarantine via Amavis-New
content_filter = smtp-amavis:[127.0.0.1]:10024

# More spam protection
smtpd_sasl_auth_enable = yes
broken_sasl_auth_clients = yes
smtpd_sasl_authenticated_header = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_path = smtpd
smtpd_use_tls = yes
smtpd_tls_cert_file = /etc/postfix/smtpd.cert
smtpd_tls_key_file = /etc/postfix/smtpd.key

readme_directory = /usr/share/doc/postfix
html_directory = /usr/share/doc/postfix/html

还有我的ma​​ster.cf:

# ==========================================================================
# service type  private unpriv  chroot  wakeup  maxproc command + args
#               (yes)   (yes)   (yes)   (never) (100)
# ==========================================================================
smtp      inet  n       -       -       -       -       smtpd
pickup    fifo  n       -       -       60      1       pickup -o content_filter= -o receive_override_options=no_header_$
cleanup   unix  n       -       -       -       0       cleanup
qmgr      fifo  n       -       n       300     1       qmgr
#qmgr     fifo  n       -       n       300     1       oqmgr
tlsmgr    unix  -       -       -       1000?   1       tlsmgr
rewrite   unix  -       -       -       -       -       trivial-rewrite
bounce    unix  -       -       -       -       0       bounce
defer     unix  -       -       -       -       0       bounce
trace     unix  -       -       -       -       0       bounce
verify    unix  -       -       -       -       1       verify
flush     unix  n       -       -       1000?   0       flush
proxymap  unix  -       -       n       -       -       proxymap
proxywrite unix -       -       n       -       1       proxymap
smtp      unix  -       -       -       -       -       smtp
relay     unix  -       -       -       -       -       smtp
#       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq     unix  n       -       -       -       -       showq
error     unix  -       -       -       -       -       error
retry     unix  -       -       -       -       -       error
discard   unix  -       -       -       -       -       discard
local     unix  -       n       n       -       -       local
virtual   unix  -       n       n       -       -       virtual
lmtp      unix  -       -       -       -       -       lmtp
anvil     unix  -       -       -       -       1       anvil
scache    unix  -       -       -       -       1       scache
maildrop  unix  -       n       n       -       -       pipe
  flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
uucp      unix  -       n       n       -       -       pipe
  flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
#
# Other external delivery methods.
#
ifmail    unix  -       n       n       -       -       pipe
  flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
bsmtp     unix  -       n       n       -       -       pipe
  flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender $recipient
scalemail-backend unix  -       n       n       -       2       pipe
  flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store ${nexthop} ${user} ${extension}
mailman   unix  -       n       n       -       -       pipe
  flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
  ${nexthop} ${user}

spamassassin unix -     n       n       -       -       pipe
        user=spamd argv=/usr/bin/spamc -f -e
        /usr/sbin/sendmail -oi -f ${sender} ${recipient}

smtp-amavis     unix    -       -       -       -       2       smtp
        -o smtp_data_done_timeout=1200
        -o smtp_send_xforward_command=yes
        -o disable_dns_lookups=yes
        -o max_use=20

127.0.0.1:10025 inet    n       -       -       -       -       smtpd
        -o content_filter=
        -o local_recipient_maps=
        -o relay_recipient_maps=
        -o smtpd_restriction_classes=
        -o smtpd_delay_reject=no
        -o smtpd_client_restrictions=permit_mynetworks,reject
        -o smtpd_helo_restrictions=
        -o smtpd_sender_restrictions=
        -o smtpd_recipient_restrictions=permit_mynetworks,reject
        -o smtpd_data_restrictions=reject_unauth_pipelining
        -o smtpd_end_of_data_restrictions=
        -o mynetworks=127.0.0.0/8
        -o smtpd_error_sleep_time=0
        -o smtpd_soft_error_limit=1001
        -o smtpd_hard_error_limit=1000
        -o smtpd_client_connection_count_limit=0
        -o smtpd_client_connection_rate_limit=0
        -o receive_override_options=no_header_body_checks,no_unknown_recipient_checks

感谢您的帮助, 杰罗德夫

最佳答案

Postfix 不能自己将消息放入数据库。但是,它有一个 pipe传递方法,它为每条传入消息运行一次自定义命令。您需要编写一个程序,将消息存入数据库。

然后,在 master.cf 中添加一行来描述您的新交付方式。您提供的文件有一些示例定义。您必须编写一个适合您的程序的程序。

然后,使用 main.cf 中的 always_bcc 选项将每条传入消息的副本发送到一个特殊的本地地址,并将 Postfix 配置为将消息发送到该地址使用您新配置的交付方式交付的地址。 This page记录如何执行交付方法选择。

关于mysql - 在数据库中保存后缀电子邮件副本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26076813/

相关文章:

php - 在 PHP 中分割 Mysql 列数据

php - sql 查询不会工作,因为 '

linux - 制造用于扩展wifi网络的wifi链接设备

linux - 将所有页面/en/XXX 重写为/en

python - 希望 procmail 运行自定义 python 脚本,每次出现新邮件时

mysql - SQL 左连接错误 - 体育应用

php - 在 PDO 中传递多个参数

linux -/usr/include/gnu/stubs.h :7:27: error: gnu/stubs-32. h: 没有那个文件或目录

java - 无法使用java代码从gmail发送邮件

java - 使用 Java 生成的内容向 Outlook 发送电子邮件