Paul Cunningham

Results 3 comments of Paul Cunningham

The dummy SMTP server runs on port 25. Can you Telnet into it to check that it's running. Also on line 35 in views.py replace the line: `send_async_email(msg)` with: send_async_email.call_local(msg)...

Dirty hack (I'm using PySide2): ``` from enaml.qt.qt_application import QtApplication from PyQt5.QtGui import QCursor from enaml.qt import QtCore class CustomQtApplication(QtApplication): def set_wait_cursor(self): app = self._qapp app.setOverrideCursor(QCursor(QtCore.Qt.WaitCursor)) def restore_cursor(self): app =...