#!/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="<69ed492c.050a0220.e51af.0005.GAE@google.com>" \
    --to="linux-bluetooth@vger.kernel.org" \
    --cc="linux-kernel@vger.kernel.org" \
    --cc="luiz.dentz@gmail.com" \
    --cc="marcel@holtmann.org" \
    --cc="syzbot+00f5a866124dc44cce14@syzkaller.appspotmail.com" \
    --cc="syzkaller-bugs@googlegroups.com" \
    "$(dirname "$0")/analysis-email.txt"
