From d41201c6418b3000607f24a160328c6623d6dd71 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Thu, 19 Aug 2021 23:44:30 +0000
Subject: [PATCH] use curl to email instead of sendmail backend

---
 main.sh |   20 ++++++++++++--------
 1 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/main.sh b/main.sh
index 81b5cf4..76217c9 100755
--- a/main.sh
+++ b/main.sh
@@ -339,14 +339,18 @@
 }
 
 function send_email {
-	(
-	echo "From: $FROM_EMAIL"
-	echo "To: $EMAIL"
-	echo "Subject: Build errors"
-	echo ""
-	echo "There were build errors for the build of $REPONAME at $(date), please address them soon."
-	echo "The errors were: $@"
-	) | sendmail -t
+	curl -s --url "smtp://$EMAIL_HOST" --ssl-reqd \
+		--mail-from "$FROM_EMAIL" \
+		--mail-rcpt "$TO_EMAIL" \
+		--user "$EMAIL_USER" \
+		-T <(
+			echo "From: $FROM_EMAIL"
+			echo "To: $TO_EMAIL"
+			echo "Subject: Build errors"
+			echo ""
+			echo "There were build errors for the build of $REPONAME at $(date), please address them soon."
+			echo "The errors were: $@"
+		)
 }
 
 case $1 in

--
Gitblit v1.10.0