Django error資訊郵件通知功能配置部署

2021-07-11 11:35:42 字數 662 閱讀 1142

1、傳送郵件賬號配置配置:

email_host = 'smtp.smthserver.com'

email_port = '25'

email_host_user = '[email protected]'

email_host_password = 'mailpassword'

2、admins配置:

admins = [('john', '[email protected]'), ('mary', '[email protected]')]

3、server_email配置

server_email = '[email protected]'

4、如果你做了自定義的logging配置,這個時候需要在logging中新增mail hander,並把它加到error資訊的handlers列表中。

5、敏感變數資訊遮蔽,對於view級的敏感資訊遮蔽用裝飾器@sensitive_variables,對於全域性需要自定義exceptionreporterfilter,看了一下系統預設的safeexceptionreporterfilter的實現,最簡單的自定義實現方法是改寫那個reporter模板。

Django error資訊郵件通知功能配置部署

1 傳送郵件賬號配置配置 email host smtp.smthserver.com email port 25 email host user no reply mydomain.com email host password mailpassword 2 admins配置 admins joh...

Jenkins配置郵件資訊

1.進入manage jenkins 系統配置 2.設定jenkins位址和管理員郵箱 不設定管理員郵箱無法傳送郵件 3.配置系統管理員的郵件屬性 4.點選 高階 配置系統管理員的郵件屬性 5.配置 郵件通知 6.點選 高階 儲存 7.安裝郵件通知外掛程式email ext recipients c...

快速讀懂郵件頭資訊

快速讀懂郵件頭資訊 有時候我們在管理郵件伺服器是會收到一些奇奇怪怪的郵件,這時候就要去分析郵件頭,好知道詳細情況,而天書般的郵件頭內容,就算是專業人士看起來也會頭痛,那麼有沒有一種快速簡便的方法能讀懂郵件頭呢?答案是有的,ip address 就能幫你解決這類問題。一 獲取郵件頭內容 首先開啟乙個 ...