Revert "Strip all <a /> tags, fuck SpamAssassin."

This reverts commit d4743b1453
This commit is contained in:
insert
2021-07-27 16:11:59 +00:00
parent d4743b1453
commit f32eaa98d4
5 changed files with 8 additions and 8 deletions

View File

@@ -35,7 +35,7 @@
You requested a password reset, if you did not request this then you can safely ignore it. You requested a password reset, if you did not request this then you can safely ignore it.
</p> </p>
<p style="margin: 0;"> <p style="margin: 0;">
Reset your password by navigating to {{url}}. Reset your password by navigating to <a href="{{url}}">{{url}}</a>.
</p> </p>
</td> </td>
</tr> </tr>
@@ -47,7 +47,7 @@
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;"> <table border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;">
<tr> <tr>
<td style="color: #ffffff; font-family: Arial, sans-serif; font-size: 14px;"> <td style="color: #ffffff; font-family: Arial, sans-serif; font-size: 14px;">
<p style="margin: 0;">Sent by Revolt.</p> <p style="margin: 0;">Sent by Revolt. &middot; Website: <a style="color: white;" href="https://revolt.chat">https://revolt.chat</a></p>
<p>Revolt is a user-first chat platform built with modern web technologies.</p> <p>Revolt is a user-first chat platform built with modern web technologies.</p>
</td> </td>
</tr> </tr>

View File

@@ -35,7 +35,7 @@
You're almost there! Verify your account to be able to log into the platform. You're almost there! Verify your account to be able to log into the platform.
</p> </p>
<p style="margin: 0;"> <p style="margin: 0;">
Please verify your account by navigating to {{url}}. Please verify your account by navigating to <a href="{{url}}">{{url}}</a>.
</p> </p>
</td> </td>
</tr> </tr>
@@ -47,7 +47,7 @@
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;"> <table border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;">
<tr> <tr>
<td style="color: #ffffff; font-family: Arial, sans-serif; font-size: 14px;"> <td style="color: #ffffff; font-family: Arial, sans-serif; font-size: 14px;">
<p style="margin: 0;">Sent by Revolt.</p> <p style="margin: 0;">Sent by Revolt. &middot; Website: <a style="color: white;" href="https://revolt.chat">https://revolt.chat</a></p>
<p>Revolt is a user-first chat platform built with modern web technologies.</p> <p>Revolt is a user-first chat platform built with modern web technologies.</p>
</td> </td>
</tr> </tr>

View File

@@ -1,3 +1,3 @@
#!/bin/bash #!/bin/bash
export version=0.5.1-alpha.14 export version=0.5.1-alpha.13
echo "pub const VERSION: &str = \"${version}\";" > src/version.rs echo "pub const VERSION: &str = \"${version}\";" > src/version.rs

View File

@@ -87,12 +87,12 @@ async fn launch_web() {
templates: Templates { templates: Templates {
verify_email: Template { verify_email: Template {
title: "Verify your Revolt account.", title: "Verify your Revolt account.",
text: "You're almost there! Verify your account to be able to log into the platform.\nPlease verify your account here: {{url}}\n\nSent by Revolt.\nRevolt is a user-first chat platform built with modern web technologies.", text: "You're almost there! Verify your account to be able to log into the platform.\nPlease verify your account here: {{url}}\n\nSent by Revolt. · Website: https://revolt.chat\nRevolt is a user-first chat platform built with modern web technologies.",
html: include_str!("../assets/templates/verify.html"), html: include_str!("../assets/templates/verify.html"),
}, },
reset_password: Template { reset_password: Template {
title: "Reset your Revolt password.", title: "Reset your Revolt password.",
text: "You requested a password reset, if you did not request this then you can safely ignore it.\nReset your password here: {{url}}\n\nSent by Revolt.\nRevolt is a user-first chat platform built with modern web technologies.", text: "You requested a password reset, if you did not request this then you can safely ignore it.\nReset your password here: {{url}}\n\nSent by Revolt. · Website: https://revolt.chat\nRevolt is a user-first chat platform built with modern web technologies.",
html: include_str!("../assets/templates/reset.html"), html: include_str!("../assets/templates/reset.html"),
}, },
welcome: None, welcome: None,

View File

@@ -1 +1 @@
pub const VERSION: &str = "0.5.1-alpha.14"; pub const VERSION: &str = "0.5.1-alpha.13";