owner-check: make sending of mails optional

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2021-03-30 12:10:33 +02:00
parent 310b8e6c95
commit a004447ba3
1 changed files with 22 additions and 5 deletions

View File

@ -1,7 +1,11 @@
#!/bin/bash
set -e
[ -z "$server" -o -z "login" ] && { echo '$server and $login need to be set'; exit 1 }
verb="$1"
[ "$verb" = "-s" ] && do_send=1 || do_send=
[ -n "$do_send" ] && [ -z "$server" -o -z "login" ] && { echo '$server and $login need to be set'; exit 1; }
header=
from=systemd-maint@fedoraproject.org
@ -11,26 +15,39 @@ port=587
for user in "$@"; do
echo "checking $user"
t=$(git shortlog --all --author $user --since "@{$time}" | wc -l)
p=$(git log -1 --all --author "$user")
if [ -z "$p" ]; then
echo "No commits from $user, check spelling"
exit 1
fi
t=$(git shortlog --all --author "$user" --since "@{$time}" | wc -l)
if [ $t != 0 ]; then
echo "$t commits in the last two years, OK"
echo
continue
fi
echo "$p" | head -n6
echo ".. adding to list"
if [ -z "$header" ]; then
echo '$USER$;$EMAIL$' >.mail.list
header=done
fi
echo "$user;$user@fedoraproject.org" >>.mail.list
echo
done
[ -z "$header" ] && exit 0
[ -n "$do_send" ] || exit 0
echo "Sending mails…"
set -x
massmail -F $from \
-C $from \
massmail -F "$from" \
-C "$from" \
-S 'write access to the fedora systemd package' \
-z $server -u $login -P $port \
-z "$server" -u "$login" -P "$port" \
.mail.list <owner-check.template