RFC Errata
RFC 5229, "Sieve Email Filtering: Variables Extension", January 2008
Note: This RFC has been updated by RFC 5173
Source of RFC: sieve (app)See Also: RFC 5229 w/ inline errata
Errata ID: 5015
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Stan Kalisch
Date Reported: 2017-05-10
Verifier Name: Alexey Melnikov
Date Verified: 2017-05-19
Section 3.2 says:
# Imagine the header
# Subject: [acme-users] [fwd] version 1.0 is out
if header :matches "Subject" "[*] *" {
# ${1} will hold "acme-users",
# ${2} will hold "[fwd] version 1.0 is out"
fileinfo "INBOX.lists.${1}"; stop;
^
}
It should say:
# Imagine the header
# Subject: [acme-users] [fwd] version 1.0 is out
if header :matches "Subject" "[*] *" {
# ${1} will hold "acme-users",
# ${2} will hold "[fwd] version 1.0 is out"
fileinto "INBOX.lists.${1}"; stop;
}
Notes:
This suggestion corrects the spelling of the "fileinto" action in the example.
