diff options
author | luukvbaal <31730729+luukvbaal@users.noreply.github.com> | 2019-06-01 21:56:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-01 21:56:55 +0200 |
commit | effa100e044de157d1db30978b8fab101e627df8 (patch) | |
tree | 97f4477522f6b4c010e755cb296b81d7eb92a55a | |
parent | 7955090f9f5ffc8e95070924a56f492ec6bbd0d7 (diff) |
fix multiline subject header regression
-rwxr-xr-x | bin/mailsync | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mailsync b/bin/mailsync index d5be1de..21ebc64 100755 --- a/bin/mailsync +++ b/bin/mailsync @@ -30,7 +30,7 @@ syncandnotify() { for file in $new; do # Extract subject and sender from mail. from=$(awk '/^From: / && ++n ==1,/^\<.*\>:/' "$file" | perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | awk '{ $1=""; if (NF>=3)$NF=""; print $0 }' | sed 's/^[[:blank:]]*[\"'\''\<]*//;s/[\"'\''\>]*[[:blank:]]*$//') - subject=$(awk '/^Subject: / && ++n == 1,/^\<.*\>: /' "$file" | perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | sed 's/^Subject: //' | sed 's/^{[[:blank:]]*[\"'\''\<]*//;s/[\"'\''\>]*[[:blank:]]*$//') + subject=$(awk '/^Subject: / && ++n == 1,/^\<.*\>: / && ++i == 2' "$file" | head -n-1 | perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | sed 's/^Subject: //' | sed 's/^{[[:blank:]]*[\"'\''\<]*//;s/[\"'\''\>]*[[:blank:]]*$//' | tr -d '\n') notify-send "📧$from:" "$subject" & done fi |