Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
Author: robbat2
Date: 2011-01-18 04:45:15 +0000 (Tue, 18 Jan 2011)
New Revision: 770
Modified:
trunk/tools/catalyst-auto
Log:
Split multiple recipients to whitespace instead of comma.
Modified: trunk/tools/catalyst-auto
===================================================================
--- trunk/tools/catalyst-auto 2011-01-14 05:53:24 UTC (rev 769)
+++ trunk/tools/catalyst-auto 2011-01-18 04:45:15 UTC (rev 770)
@@ -39,7 +39,7 @@
body=${message}
fi
- echo -e "From: ${EMAIL_FROM}\r\nTo: ${EMAIL_TO}\r\nSubject: ${subject}\r\n\r\n${body}" | /usr/sbin/sendmail -f ${EMAIL_FROM} ${EMAIL_TO}
+ echo -e "From: ${EMAIL_FROM}\r\nTo: ${EMAIL_TO}\r\nSubject: ${subject}\r\n\r\n${body}" | /usr/sbin/sendmail -f ${EMAIL_FROM} ${EMAIL_TO//,/ }
}
run_cmd() {
|
|