6.0.0-alpha14
7/2/25

[#12086] Ingo Sieve driver: Allow including original $subject into vacation response
Summary Ingo Sieve driver: Allow including original $subject into vacation response
Queue Ingo
Queue Version Git master
Type Enhancement
State Rejected
Priority 1. Low
Owners
Requester ralf.lang (at) ralf-lang (dot) de
Created 03/03/2013 (4504 days ago)
Due
Updated 03/04/2013 (4503 days ago)
Assigned
Resolved 03/04/2013 (4503 days ago)
Milestone
Patch No

History
03/04/2013 12:35:43 PM Jan Schneider Comment #4
State ⇒ Rejected
Reply to this comment
Not possible with Sieve.
You can only leave out the subject completely which would
auto-generate a subject line constructed from the original message.
that's not correct.

It is possible to store the old Subject with the "variables" 
extension and add it later to the auto-reply subject line.
Interesting, I didn't know this use-case yet.

[Show Quoted Text - 18 lines]
That's one very specialized construct for supporting a single feature, 
not supported by any other of Ingo's filter backends, and requiring 
knowledge of internal Sieve (variables) syntax, though. This is more a 
hack than a general approach to this problem.
03/04/2013 12:06:41 PM Ralf Lang State ⇒ Feedback
 
03/04/2013 11:57:37 AM beitter (at) b1-systems (dot) de Comment #3 Reply to this comment
Not possible with Sieve.
You can only leave out the subject completely which would 
auto-generate a subject line constructed from the original message.
that's not correct.

It is possible to store the old Subject with the "variables" extension 
and add it later to the auto-reply subject line.

-----snip-----

require ["variables", "vacation"] ;

# store old subject to variable "old_subject"
if header :matches "Subject" "*" {
         set "old_subject" ": ${1}";
}

vacation
    :days 7
    :subject "Out of office - ${old_subject}"
"I am out of  office until .........";

-----snip-----

This will create a subject for the auto-reply: "Out of office - I am 
the old subject"

see RFC5229 - http://tools.ietf.org/html/rfc5229

greets
03/04/2013 11:23:53 AM Jan Schneider Comment #2
Milestone ⇒
State ⇒ Rejected
Reply to this comment
Not possible with Sieve.
You can only leave out the subject completely which would 
auto-generate a subject line constructed from the original message.
03/03/2013 11:47:07 AM Ralf Lang Comment #1
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Ingo Sieve driver: Allow including original $subject into vacation response
Queue ⇒ Ingo
Milestone ⇒ Ingo H5.1
Patch ⇒ No
State ⇒ New
Reply to this comment
Allow to create a response like:

Re: Invitation for meeting ... (Out of office) which allows the 
receiver to recognize the original mail which triggered the vacation 
response.

Saved Queries