-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't connect via SMTP #58
Comments
are you sure that it's pulling those settings? It looks like it's trying to connect somewhere that isn't accepting connnections and:
that works. So I think it's trying to connect somewhere else. |
Ok. I'm officially stupid, when I entered the SMTP config I didn't notice that at the end of the default file another mail host was already defined. Working now 🙈 |
that has tod o with the time of day and day of week, not intelligence. :) |
Btw, got apache working using <VirtualHost *:80>
WSGIDaemonProcess apps python-home=/opt/appstore/venv python-path=/opt/appstore
WSGIProcessGroup apps
WSGIScriptAlias / /opt/appstore/nextcloudappstore/wsgi.py
Alias /static/ /var/www/html/static/
Alias /schema/apps/info.xsd /opt/appstore/nextcloudappstore/core/api/v1/release/info.xsd
<Directory /opt/appstore/nextcloudappstore>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
<Directory /opt/appstore/nextcloudappstore/core/api/v1/release>
<Files info.xsd>
Require all granted
</Files>
</Directory>
<Directory /var/www/html/static>
Require all granted
AllowOverride None
</Directory>
<Directory /var/www/html/media>
Require all granted
AllowOverride None
</Directory>
</VirtualHost>
All changes in python code now need to be reloaded by restarting (or maybe reloading) apache :) |
I just tried to deploy this here and everything works fine, except the SMTP part which makes registering impossible. As soon as somebody tries to register a verification mail will be sent but somehow Django refuses to connect properly to the SMTP.
I've configured the following and on the virtual machine next to this one the settings work quite fine for phpList:
The thrown error is:
cc @adsworth @BernhardPosselt Any ideas?
The text was updated successfully, but these errors were encountered: