-
Notifications
You must be signed in to change notification settings - Fork 102
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
Allow "custom_subject" to always be at the beginning of the subject #1811
Comments
As far as I remember, the format of always prefixing the list tag was presented as an option when the This format is certainly unintuitive when used with sequence numbers Nevertheless, if there are use cases that would certainly require such a feature, we would appreciate it if someone could submit a PR! |
I am filtering emails based on the condition that the subject line starts with "[List ", my reply emails are sorted into an unexpected folder. |
A particular problem is that setting "list.sequence" makes it appear as if you are replying to an email that contains a number that doesn't exist.
It would be best to prepare setting values and use them to control, but adding setting values involves major changes and is not easy to implement. (PR is difficult because I can't upload files to GitHub due to internal restrictions.) |
@tanakakz-alpha , your suggestion looks promising for me. If no objection for a few weeks, I'll submit a PR. |
@tanakakz-alpha , |
Allow "custom_subject" to be at the beginning of the subject (#1811)
For example, if reply to an email with a subject like "[List 1] Subject", the mailer creates an email with a subject like "Re: [List 1] Subject".
If send this email to a mailing list, expect to receive an email with a subject like "[List 2] Re: Subject" or "[List 2] Re: [List 1] Subject".
However, the actual subject line will be something like "Re: [List 2] Subject.".
I would like a feature that allows "custom_subject" to always be at the beginning of the subject.
Expected Behavior
The subject of an email sent with "Re: [List 1] Subject" will be "[List 2] Re: Subject" or "[List 2] Re: [List 1] Subject".
Current Behavior
The subject of the email sent with "Re: [List 1] Subject" will be "Re: [List 2] Subject".
Possible Solution
Rather than replacing Custom_subject, remove it and prepend the new one.
Context
Automation using email subject line works correctly.
The text was updated successfully, but these errors were encountered: