Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add message token for bounces #3036

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Jul 5, 2024

  1. Add message token to SMTP FROM

    We add the per-message individual message token to the SMTP FROM,
    which is mainly used in the return path (i.e. for bounce messages).
    By adding the token to the mail address, we now are able to assign
    incoming bounces not only by the x-postal-msgId header, but also
    by their individual message tag / address.
    schueffi committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    67b3ffa View commit details
    Browse the repository at this point in the history
  2. assign bounces by their address tag, optional

        Beside the search based on X-Postal-MsgID header, we also can assign incoming
        bounces by their individually generated mail address (with the same tag as
        in the X-Postal-MsgID). This is configurable, with the default disabled to
        have it backwards compatible.
        From a performance perspective, searching by this address based approach
        always is faster than scanning the full mail for the presence of the header,
        so we could also consider to make this feature enabled by default.
    schueffi committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    57af325 View commit details
    Browse the repository at this point in the history