From mboxrd@z Thu Jan 1 00:00:00 1970 From: leon.woestenberg@gmail.com Subject: [test - ignore] kernel patch submission script using msmtp/gmail Date: Sat, 05 Jul 2008 05:22:21 -0700 (PDT) Message-ID: <486f677d.07ac420a.22e2.1c4c@mx.google.com> To: linux-rt-users@vger.kernel.org Return-path: Received: from ug-out-1314.google.com ([66.249.92.173]:18647 "EHLO ug-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751840AbYGEMWY (ORCPT ); Sat, 5 Jul 2008 08:22:24 -0400 Received: by ug-out-1314.google.com with SMTP id h2so892443ugf.16 for ; Sat, 05 Jul 2008 05:22:22 -0700 (PDT) Sender: linux-rt-users-owner@vger.kernel.org List-ID: #!/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