1 | initial version |
well - this site does seem a bit sick... continuing in the answer.
The reason you have SMTP errors is because the site is trying to send emails through askbot.org
mailserver, which is not an open realy. This is my mistake - I've left the entry in the default settings file.
To fix the error, the server administrator needs to configure the following settings
SERVER_EMAIL = ''
DEFAULT_FROM_EMAIL = 'admin@askbot.org'
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_SUBJECT_PREFIX = '[ASKBOT] '
EMAIL_HOST='askbot.org'
EMAIL_PORT='25'
EMAIL_USE_TLS=False
The incorrect answer counts are caused by interruption of the process of saving the answer by the SMTP error. I will fix this behaviour ASAP in the forum source code.
Thanks for your patience.