On Thu 12-04-18 12:24:24, Matthew Wilcox wrote: > On Thu, Apr 12, 2018 at 09:54:51AM +0900, Minchan Kim wrote: > > Matthew, > > > > Please Cced relevant people so they know what's going on the problem > > they spent on much time. Everyone doesn't keep an eye on mailing list. > > My apologies; I assumed that git send-email would pick up the people > named in the changelog. I have now read the source code and discovered > it only picks up the people listed in Signed-off-by: and Cc:. That > surprises me; I'll submit a patch. I remember that there was a discussion to add support for more $Foo-by: $EMAIL but I do not remember the outcome of the discussion and from a quick glance into the perl disaster it doesn't seem to handle generic tags. I am using the following $ cat cc-cmd.sh #!/bin/bash if [[ $1 == *gitsendemail.msg* || $1 == *cover-letter* ]]; then grep '<.*@.*>' -h *.patch | sed 's/^.*: //' | sort | uniq else grep '<.*@.*>' -h $1 | sed 's/^.*: //' | sort | uniq fi and use it as --cc-cmd= -- Michal Hocko SUSE Labs