Django - [Errno 111] Connection refused

前端 未结 8 1487
感情败类
感情败类 2020-11-29 21:29

when I post a comment, do not save, crashes (error: [Errno 111] Connection refused), why?

views.py

import time
from calendar import month_name

from          


        
8条回答
  •  庸人自扰
    2020-11-29 21:59

    Install postfix package on your server and it works. If is ubuntu, try it:

    sudo apt-get install postfix
    

    In your settings, put:

    EMAIL_HOST = 'localhost'
    

提交回复
热议问题