fix case of flag value

same as previous commit on dovecot.sieve
This commit is contained in:
Xavier Brochard 2022-03-23 23:32:16 +01:00 committed by GitHub
parent 4359aad89f
commit 726e0467e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
require ["fileinto"];
if header :is "X-Spam" "yes" {
if header :is "X-Spam" "Yes" {
fileinto "Junk";
}