Test if the From: line contains "Mail System Internal Data" and if it is, skip this mail. Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> --- git-am.sh | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/git-am.sh b/git-am.sh index bfd65dc..22d2b5c 100755 --- a/git-am.sh +++ b/git-am.sh @@ -284,6 +284,12 @@ do git mailinfo $keep $utf8 "$dotest/msg" "$dotest/patch" \ <"$dotest/$msgnum" >"$dotest/info" || stop_here $this + + # skip pine's internal folder data + sed '/^$/q' < "$dotest"/info | + grep '^Author: Mail System Internal Data$' > /dev/null + && go_next && continue + test -s $dotest/patch || { echo "Patch is empty. Was it split wrong?" stop_here $this -- 1.5.3.rc2.32.g35c5b-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html