summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/mailsync16
-rwxr-xr-xbin/mw2
2 files changed, 8 insertions, 10 deletions
diff --git a/bin/mailsync b/bin/mailsync
index ac1920b..cbd36ff 100755
--- a/bin/mailsync
+++ b/bin/mailsync
@@ -70,16 +70,12 @@ syncandnotify() {
echo "$newcount new mail for $2."
[ -z "$MAILSYNC_MUTE" ] &&
for file in $new; do
- # Extract subject and sender from mail. TODO: beautify and clean up.
- 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,/^\<.*\>: / && ++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')
+ # Extract and decode subject and sender from mail.
+ subject="$(sed -n "/^Subject:/ s|Subject: *|| p" "$file" |
+ perl -CS -MEncode -ne 'print decode("MIME-Header", $_)')"
+ from="$(sed -n "/^From:/ s|From: *|| p" "$file" |
+ perl -CS -MEncode -ne 'print decode("MIME-Header", $_)')"
+ from="${from% *}" ; from="${from%\"}" ; from="${from#\"}"
notify "📧$from:" "$subject"
done
;;
diff --git a/bin/mw b/bin/mw
index 44a6566..2baa5f7 100755
--- a/bin/mw
+++ b/bin/mw
@@ -313,6 +313,8 @@ while getopts "rfpXlhodTYD:y:i:I:s:S:u:a:n:P:x:m:t:" o; do case "${o}" in
\?) echo "See \`$(basename $0) -h\` for possible options and help."; exit 1 ;;
esac done
+[ -z "$action" ] && action="info"
+
case "$action" in
list) list ;;
add) checkbasics && askinfo && getboxes && getprofiles && finalize ;;