Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder2.hal-mli.net!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.025 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; '(python)': 0.16; 'from:addr:comcast.net': 0.16; 'gmail.': 0.16; 'received:76.96': 0.16; 'received:76.96.30': 0.16; 'received:ca.mail.comcast.net': 0.16; 'received:emeryville.ca.mail.comcast.net': 0.16; 'received:mail.comcast.net': 0.16; 'subject:Password': 0.16; 'tls': 0.16; 'script': 0.24; 'plain': 0.27; 'hash': 0.29; 'received:192.168.1.3': 0.29; 'received:comcast.net': 0.33; 'to:addr:python-list': 0.33; 'server': 0.35; 'smtp': 0.35; 'text.': 0.35; 'rather': 0.37; 'login': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'received:192.168': 0.40; 'details': 0.63; 'account': 0.67 Subject: Password hash From: Robert Montgomery To: python-list@python.org Date: Sun, 23 Dec 2012 20:38:12 -0600 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.4.4 (3.4.4-2.fc17) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1356316759; bh=An2dxHx6yhBKeGJ6aIzc/TsqPUz9JtsNvYXfeJCBF88=; h=Received:Received:Message-ID:Subject:From:To:Date:Content-Type: Mime-Version; b=NY2WpaNlH/p76p+VThu7V6JNRuUuEqRPnRiwACnit29rpnYgomrfZ1SaZRqiZ0nOX k+dFVC/BXzXddLuch6omiNNclNFUOJ+ZIUeK/3tR05ZRfzaHAT72ydaZHJ0Z0k46Or F712IkfcHeBnxeEtPM4s9J79Y73XgtyTaf81BKGbhB1XRwmOGZN+jXZOX8pMneR9XU 6ZxWRQ1Z8nHv4kfpdb4/ZBOyg3RzDGsEBz4yTytz9ljaz2SKCDJtaJXJAXwhYB/Z9T LPsZenmcVazYwC6w2XY5heOL7i0p8mX3pauk6RV02Z6qVz/M0rXXaCyeNzbGlOO2OV gyWPCD5pGsOqg== X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 5 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1356316836 news.xs4all.nl 6913 [2001:888:2000:d::a6]:47512 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:35431 I am writing a script that will send an email using an account I set up in gmail. It is an smtp server using tls on port 587, and I would like to use a password hash in the (python) script for login rather than plain text. Is this do-able? Details please.