Sendmail Errno[61] 连接被拒绝 [英] Sendmail Errno[61] Connection Refused

查看:36
本文介绍了Sendmail Errno[61] 连接被拒绝的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在尝试让我的应用程序将一些输出的文本邮寄到电子邮件中.为简化起见,我隔离了脚本:

I've been trying to get my application to mail some outputted text to an email. For simplification I have isolated the script :

import smtplib
import sys
import os

SERVER = "localhost"

FROM = os.getlogin()
TO = [raw_input("To : ")]

SUBJECT = "Message From " + os.getlogin()

print "Message : (End with ^D)"
TEXT = ''
while 1:
    line = sys.stdin.readline()
    if not line:
        break
    TEXT = TEXT + line

# Prepare actual message

message = """
From: %s
To: %s
Subject: %s

%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)

# Send the mail

server = smtplib.SMTP(SERVER)
server.sendmail(FROM, TO, message)
server.quit()

此脚本输出:

    Traceback (most recent call last):
  File "/Users/christianlaustsen/Dropbox/Apps - Python/mail/smtplib_mail.py", line 32, in <module>
    server = smtplib.SMTP(SERVER)
  File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/smtplib.py", line 239, in __init__
    (code, msg) = self.connect(host, port)
  File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/smtplib.py", line 295, in connect
    self.sock = self._get_socket(host, port, self.timeout)
  File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/smtplib.py", line 273, in _get_socket
    return socket.create_connection((port, host), timeout)
  File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/socket.py", line 512, in create_connection
    raise error, msg
error: [Errno 61] Connection refused

如您所见,连接被拒绝.我在 Mac OS X Snow Leopard 上运行 Python 2.6(如果相关).

So as you can see, the connection is being refused. I'm running Python 2.6 on Mac OS X Snow Leopard (if that's relevant).

我已经尝试了很多搜索,但一直无法找到解决方案.任何帮助将不胜感激.

I have tried searching around a lot, but haven't been able to find a solution. Any help will be appreciated.

推荐答案

我猜你的本地机器上没有安装任何 SMTP 服务器.

My guess is that you do not have any SMTP server installed on your local machine.

如果您的电子邮件不敏感,请打开一个 Gmail 帐户并使用它发送您的电子邮件使用 Python.

If your emails are not sensitive, open a Gmail account and send your emails using it with Python.

这篇关于Sendmail Errno[61] 连接被拒绝的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆