#!/bin/sh
# Review before sending:
#   - Adjust --smtp-server / --smtp-user if not already configured
#     in ~/.gitconfig
#   - --annotate opens the email in $EDITOR for a final review before send

git send-email \
    --annotate \
    --from="$(git config user.name) <$(git config user.email)>" \
    --in-reply-to="<69e93024.a00a0220.17a17.0031.GAE@google.com>" \
    --to="linux-i2c@vger.kernel.org" \
    --cc="linux-kernel@vger.kernel.org" \
    --cc="syzkaller-bugs@googlegroups.com" \
    --cc="wsa+renesas@sang-engineering.com" \
    --cc="syzbot+c0291c8c9aaa473c7721@syzkaller.appspotmail.com" \
    analysis-email.txt
