dromara / domain-admin

域名SSL证书监测平台、SSL证书申请自动续签。Domain and SSL Cert monitor System.
https://domain-admin.cn/
MIT License
1.85k stars 265 forks source link

webhook通知只通知30天内的域名 #27

Closed mcrrx closed 1 year ago

mcrrx commented 1 year ago

我在个人设置里面设置了过期时间是30天,然后在通知设置里的webhook模块请求体里面添加了以下内容 { "msgtype": "text","text": {"content":"===以下SSL证书即将过期===\n {% for item in domain_list %} {{item.domain}} - {{item.expire_days}} \n {% endfor %}"},"at": {"isAtAll": true} }

最后通知出来的内容是所有域名,并没有筛选出小于30天的,请问如何修改 @mouday

mouday commented 1 year ago

可以使用jinja2的语法,加一个if判断即可

mouday commented 1 year ago

参考:https://github.com/mouday/domain-admin/blob/master/docs/notify/updateNotifyOfUser.md 字段参考 https://github.com/mouday/domain-admin/blob/master/docs/domain/getDomainById.md

mcrrx commented 1 year ago

参考:https://github.com/mouday/domain-admin/blob/master/docs/notify/updateNotifyOfUser.md 字段参考 https://github.com/mouday/domain-admin/blob/master/docs/domain/getDomainById.md

好的,谢谢