YoRyan / mailrise

An SMTP gateway for Apprise notifications.
https://mailrise.xyz
MIT License
898 stars 39 forks source link

Filter attachments with certain extensions #128

Open BaccanoMob opened 3 months ago

BaccanoMob commented 3 months ago

Currently there is no control over attachments, all attachments are forwarded fully. It would great if there are options like

mailrise:
  title_template: "Urgent: ${body}"
  allow_attachments: ["pdf"]  # or ["*.pdf"]

or

mailrise:
  title_template: "Urgent: ${body}"
  disallow_attachments: ["jpg"]   # or ["*.jpg"]

or

mailrise:
  title_template: "Urgent: ${body}"
  attachment_filter: ["pdf", "-jpg"]