From a8874f660f9e6825d8d3c983cb9062d8e37849a6 Mon Sep 17 00:00:00 2001 From: "martin@piware.de" <> Date: Tue, 5 Sep 2006 14:43:18 +0200 Subject: [PATCH] requestsync: talk directly to launchpad MX to avoid local MTA --- requestsync | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/requestsync b/requestsync index 42b7499..f964d8a 100755 --- a/requestsync +++ b/requestsync @@ -99,10 +99,9 @@ print mail print 'Press enter to file this bug, Control-C to abort' sys.stdin.readline() -s = smtplib.SMTP() -s.connect() +s = smtplib.SMTP('fiordland.ubuntu.com') s.sendmail(myemailaddr, to, mail) -s.close() +s.quit() if ubuntuchanges: print 'You need to write a followup bug comment with some short explanation of the Ubuntu delta and why it can be dropped.' -- 2.39.2