Can't verify my email. (6.0.0)
See original GitHub issueWhen I registered my account and sended an email to my emailbox, I received the verification link. But this link is not work. My account is still unverified after I clicked it.
Below is the api log:
[02:51:23 INF] xxxxxxxxx@qq.com signed up.
[02:52:34 WRN] Token mOBvtGA6iHW7u2abPsJirFcxIiQLboXwHa1xF0Kd for /api/v2/projects/config
not found.
[02:52:34 INF] HTTP GET /api/v2/projects/config?v=1 responded 401 in 5.5533 ms
By the way, I can’t receive any email before I added below code at src\Exceptionless.Core\Configuration\EmailOptions.cs line 50
string emailConnectionString = config.GetConnectionString(“Email”); if (!String.IsNullOrEmpty(emailConnectionString)) { var uri = new SmtpUri(emailConnectionString); options.SmtpHost = uri.Host; options.SmtpPort = uri.Port; options.SmtpUser = uri.User; options.SmtpFrom = uri.User; options.SmtpPassword = uri.Password; }
Issue Analytics
- State:
- Created 4 years ago
- Comments:27 (13 by maintainers)
Top GitHub Comments
The problem has been solved. Thanks
I’m not sure what your last message said but yes @BinGuoGuo is correct.