improvements on flowed email

This commit is contained in:
Felix Van der Jeugt 2021-05-18 23:51:52 +02:00
parent f5e78f8eb9
commit 0fe8824847
No known key found for this signature in database
GPG key ID: 58B209295023754D
3 changed files with 5 additions and 3 deletions

View file

@ -8,7 +8,7 @@ printf "\n"
read line || exit 0
while true; do
if [ "${line% wrote:}" != "$line" ]; then
if [ "${line% wrote:}" != "$line" -o "${line%,}" != "$line" ]; then
printf "%s\n" "$line"
read line || exit 0
fi