egg-cnode icon indicating copy to clipboard operation
egg-cnode copied to clipboard

登录问题

Open LiQinFei opened this issue 7 years ago • 3 comments

登录出现异常

LiQinFei avatar May 02 '18 08:05 LiQinFei

信息再详细点吧

sinchang avatar May 02 '18 08:05 sinchang

image 注册完之后 不必去激活吧!直接密码登录会失败

`const localStrategy = app.passport.authenticate('local', { successRedirect: '/', failureRedirect: '/signin', });

router.post('/passport/local', localStrategy);`

这个东西会跳转到失败

lzt9977 avatar May 24 '18 01:05 lzt9977

如果不想激活邮箱就登录的话要注释掉 /app.js 中的

if (!existUser.active) {
      // 发送激活邮件
      return null;
    }

否则要配置邮件服务 /app/config/config.default.js

config.mail_opts = {
    host: 'smtp.126.com',
    port: 25,
    auth: {
      user: '[email protected]',
      pass: 'club'
    },
    ignoreTLS: true
  };

ouyangxuanyun avatar Jun 13 '18 06:06 ouyangxuanyun