git send-email has the correct check on it. Basically the From is
taken from the git 'user' and 'email' config values and in case
'sendemail.smtpserver' is not provided it defaults to use local
sendmail command.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Darren Hart <dvhart@linux.intel.com>
unset IFS
}
-check_git_sendemail_config()
-{
- GIT_SMTP=$(git config sendemail.smtpserver)
- GIT_FROM=$(git config sendemail.from)
- if [ -z "$GIT_SMTP" ] || [ -z "$GIT_FROM" ]; then
- echo "ERROR: git sendemail is not configured."
- echo "Please read GIT-SEND-EMAIL(1) and configure:"
- echo " sendemail.smtpserver"
- echo " sendemail.from"
- exit 1
- fi
-}
-
# Parse and verify arguments
while getopts "achp:t:" OPT; do
case $OPT in
esac
done
-# Abort early if git-send-email is not properly configured
-check_git_sendemail_config
-
if [ -z "$PDIR" ]; then
echo "ERROR: you must specify a pull-dir."
usage