【问题标题】:Save postfix email copy in database将后缀电子邮件副本保存在数据库中
【发布时间】:2014-11-22 11:35:54
【问题描述】:

我目前有一个客户的邮件和网络服务器。 我使用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

感谢您的帮助, 杰罗德夫

【问题讨论】:

    标签: mysql linux email postfix-mta


    【解决方案1】:

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

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

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

    【讨论】:

    • 有什么办法可以将密件抄送发送到服务器上的文件夹,让 cronjob 每 x 分钟检查一次文件夹?
    • Postfix 有一个local 传递代理,可以将传入的邮件存储在邮箱文件中。它将所有消息放入您必须解析的同一个文件中。您仍然需要一个程序来将消息放入数据库。直接交付给程序会更好,因为消息是实时处理的。此外,在使用文件时,您必须适当地锁定它,否则您会遇到数据争用。
    • 所以,现在我在我的master.cf:save_php unix - n n - - pipe flags=F user=www-data argv=/var/www/mysite/Scripts/mail/postfixReceive.php ${sender} ${size} ${recipient} 中做了一个新的钩子。但是我如何将邮件发送到这个钩子?我曾尝试使用content_filter 将其添加到拾音器中,但没有奏效。当我将content_filter 添加到 smtp 时,它可以工作,但邮件不再转发给接收者
    • @Jerodev 您需要将钩子设置为传输,而不是过滤器。例如,如果您还没有使用local_transport,则在main.cf 中设置local_transport = save_php,然后设置always_bcc = something@localhost(假设您没有更改mydestination)。然后将每条消息的副本发送到something@localhost,发送到localhost 的每条消息都将输入到您的脚本中。
    • 谢谢你,在你的帮助this article 和大量的思考下,我终于成功了。 :p 你是救生员! :D
    猜你喜欢
    • 2010-10-19
    • 1970-01-01
    • 2011-09-19
    • 2012-12-24
    • 2023-03-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多