Error notification on plone 4

前端 未结 4 796
小鲜肉
小鲜肉 2021-02-08 23:00

I just want to have email notification when an error is declared in plone 4.

Any ideas of product or any \"how-to\" ?

Thanks

4条回答
  •  北海茫月
    2021-02-08 23:28

    Configuring mailing-logger is documented at http://pypi.python.org/pypi/plone.recipe.zope2instance but I think that email log notification is built into recent Zope2 releases, so you should now add the following to you [instance] section:

    event-log-custom =
      
        from server@here.com
        to kdie@localhost
        subject "anything goes here"
        smtp-server 127.0.0.1
      
    

    (example from http://myzope.kedai.com.my/blogs/kedai/44)

提交回复
热议问题