mirror of https://github.com/LemmyNet/lemmy.git
Fixing ansible build, and email link.
parent
e8ce11cc2f
commit
3021d19e1f
|
@ -8,3 +8,7 @@ RATE_LIMIT_POST=3
|
||||||
RATE_LIMIT_POST_PER_SECOND=600
|
RATE_LIMIT_POST_PER_SECOND=600
|
||||||
RATE_LIMIT_REGISTER=1
|
RATE_LIMIT_REGISTER=1
|
||||||
RATE_LIMIT_REGISTER_PER_SECOND=3600
|
RATE_LIMIT_REGISTER_PER_SECOND=3600
|
||||||
|
SMTP_SERVER={{ smtp_server }}
|
||||||
|
SMTP_LOGIN={{ smtp_login }}
|
||||||
|
SMTP_PASSWORD={{ smtp_password }}
|
||||||
|
SMTP_FROM_ADDRESS={{ smtp_from_address }}
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
- [Activitypub main](https://www.w3.org/TR/activitypub/)
|
- [Activitypub main](https://www.w3.org/TR/activitypub/)
|
||||||
- [Diesel to Postgres data types](https://kotiri.com/2018/01/31/postgresql-diesel-rust-types.html)
|
- [Diesel to Postgres data types](https://kotiri.com/2018/01/31/postgresql-diesel-rust-types.html)
|
||||||
- [helpful diesel examples](http://siciarz.net/24-days-rust-diesel/)
|
- [helpful diesel examples](http://siciarz.net/24-days-rust-diesel/)
|
||||||
- [Mastodon public key server example](https://blog.joinmastodon.org/2018/06/how-to-implement-a-basic-activitypub-server/)
|
|
||||||
- [Recursive query for adjacency list for nested comments](https://stackoverflow.com/questions/192220/what-is-the-most-efficient-elegant-way-to-parse-a-flat-table-into-a-tree/192462#192462)
|
- [Recursive query for adjacency list for nested comments](https://stackoverflow.com/questions/192220/what-is-the-most-efficient-elegant-way-to-parse-a-flat-table-into-a-tree/192462#192462)
|
||||||
- https://github.com/sparksuite/simplemde-markdown-editor
|
- https://github.com/sparksuite/simplemde-markdown-editor
|
||||||
- [Markdown-it](https://github.com/markdown-it/markdown-it)
|
- [Markdown-it](https://github.com/markdown-it/markdown-it)
|
||||||
|
|
|
@ -847,7 +847,7 @@ impl Perform<PasswordResetResponse> for Oper<PasswordReset> {
|
||||||
// TODO no i18n support here.
|
// TODO no i18n support here.
|
||||||
let user_email = &user.email.expect("email");
|
let user_email = &user.email.expect("email");
|
||||||
let subject = &format!("Password reset for {}", user.name);
|
let subject = &format!("Password reset for {}", user.name);
|
||||||
let hostname = Settings::get().hostname;
|
let hostname = &format!("https://{}", Settings::get().hostname); //TODO add https for now.
|
||||||
let html = &format!("<h1>Password Reset Request for {}</h1><br><a href={}/password_change/{}>Click here to reset your password</a>", user.name, hostname, &token);
|
let html = &format!("<h1>Password Reset Request for {}</h1><br><a href={}/password_change/{}>Click here to reset your password</a>", user.name, hostname, &token);
|
||||||
match send_email(subject, user_email, &user.name, html) {
|
match send_email(subject, user_email, &user.name, html) {
|
||||||
Ok(_o) => _o,
|
Ok(_o) => _o,
|
||||||
|
|
Loading…
Reference in New Issue