linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [test - ignore] kernel patch submission script using msmtp/gmail
@ 2008-07-05 12:15 leon.woestenberg
  0 siblings, 0 replies; 2+ messages in thread
From: leon.woestenberg @ 2008-07-05 12:15 UTC (permalink / raw)


#!/bin/sh

# Submits a single kernel patch using GMail SMTP
# During tests, this script emails itself (nothing secret in here)

smtpemailfrom="leon.woestenberg@gmail.com"
smtpdomain=sidebranch.com
smtpserver=smtp.gmail.com
smtplogin=leon.woestenberg@gmail.com

recipients="linux-rt-users@vger.kernel.org"

patchemail=/tmp/patch.eml

echo -n "Subject: " > $patchemail
echo "[test - ignore] kernel patch submission script using msmtp/gmail" >> $patchemail
echo "" >> $patchemail

cat $0 >> $patchemail

msmtp --host=$smtpserver --auth=on --tls=on --port=587 \
--tls-certcheck=off -f $smtpemailfrom --user $smtplogin \
--maildomain $smtpdomain \
$recipients < $patchemail



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [test - ignore] kernel patch submission script using msmtp/gmail
@ 2008-07-05 12:22 leon.woestenberg
  0 siblings, 0 replies; 2+ messages in thread
From: leon.woestenberg @ 2008-07-05 12:22 UTC (permalink / raw)
  To: linux-rt-users

#!/bin/sh

# Submits a single kernel patch using GMail SMTP
# During tests, this script emails itself (nothing secret in here)

smtpemailfrom="leon.woestenberg@gmail.com"
smtpdomain=sidebranch.com
smtpserver=smtp.gmail.com
smtplogin=leon.woestenberg@gmail.com

recipients="linux-rt-users@vger.kernel.org"

patchemail=/tmp/patch.eml

echo -n "Subject: " > $patchemail
echo "[test - ignore] kernel patch submission script using msmtp/gmail" >> $patchemail
echo "To: $recipients" >> $patchemail
echo "" >> $patchemail

cat $0 >> $patchemail

msmtp --host=$smtpserver --auth=on --tls=on --port=587 \
--tls-certcheck=off -f $smtpemailfrom --user $smtplogin \
--maildomain $smtpdomain \
$recipients < $patchemail



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-07-05 12:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-05 12:22 [test - ignore] kernel patch submission script using msmtp/gmail leon.woestenberg
  -- strict thread matches above, loose matches on Subject: below --
2008-07-05 12:15 leon.woestenberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).