I'm having trouble sending flask email ( http://pythonhosted.org/flask-mail/ )
from flask.ext.sqlalchemy import SQLAlchemy from flask import Flask, request, session, g, redirect, url_for, abort, render_template, flash from flask.ext.mail import Mail, Message import os
When I go to / minfo, I get
12:25:57 web.1 | return socket.create_connection((port, host), timeout) 12:25:57 web.1 | File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 571, in create_connection 12:25:57 web.1 | raise err 12:25:57 web.1 | error: [Errno 61] Connection refused
I have no idea what violates or how to fix it, it has been working on the Internet for hours. Has anyone experienced this?
source share