fix: was using the older sso domain
This commit is contained in:
parent
a2e7fe907d
commit
c131f82e9d
3 changed files with 3 additions and 3 deletions
|
@ -109,7 +109,7 @@ pub mod email {
|
||||||
fn send_mail(config: &Config, record: &AccountWolves, auth: &str) -> Result<lettre::transport::smtp::response::Response, lettre::transport::smtp::Error> {
|
fn send_mail(config: &Config, record: &AccountWolves, auth: &str) -> Result<lettre::transport::smtp::response::Response, lettre::transport::smtp::Error> {
|
||||||
let recipient = &record.name_first;
|
let recipient = &record.name_first;
|
||||||
let mail = &record.email;
|
let mail = &record.email;
|
||||||
let url_base = "https://sso.skynet.ie";
|
let url_base = "https://account.skynet.ie";
|
||||||
let link_new = format!("{url_base}/register?auth={auth}");
|
let link_new = format!("{url_base}/register?auth={auth}");
|
||||||
let link_mod = format!("{url_base}/modify");
|
let link_mod = format!("{url_base}/modify");
|
||||||
let discord = "https://discord.gg/mkuKJkCuyM";
|
let discord = "https://discord.gg/mkuKJkCuyM";
|
||||||
|
|
|
@ -214,7 +214,7 @@ pub mod password {
|
||||||
fn send_mail(config: &Config, record: &Accounts, auth: &str) -> Result<Response, Error> {
|
fn send_mail(config: &Config, record: &Accounts, auth: &str) -> Result<Response, Error> {
|
||||||
let recipient = &record.user;
|
let recipient = &record.user;
|
||||||
let mail = &record.mail;
|
let mail = &record.mail;
|
||||||
let url_base = "https://sso.skynet.ie";
|
let url_base = "https://account.skynet.ie";
|
||||||
let link_new = format!("{url_base}/recovery_pass?auth={auth}");
|
let link_new = format!("{url_base}/recovery_pass?auth={auth}");
|
||||||
let discord = "https://discord.gg/mkuKJkCuyM";
|
let discord = "https://discord.gg/mkuKJkCuyM";
|
||||||
let sender = format!("UL Computer Society <{}>", &config.mail_user);
|
let sender = format!("UL Computer Society <{}>", &config.mail_user);
|
||||||
|
|
|
@ -211,7 +211,7 @@ async fn ldap_reset_pw(config: &Config, details: &AccountsReset, pass: &str) ->
|
||||||
fn send_mail(config: &Config, record: &Accounts, auth: &str) -> Result<Response, Error> {
|
fn send_mail(config: &Config, record: &Accounts, auth: &str) -> Result<Response, Error> {
|
||||||
let recipient = &record.user;
|
let recipient = &record.user;
|
||||||
let mail = &record.mail;
|
let mail = &record.mail;
|
||||||
let url_base = "https://sso.skynet.ie";
|
let url_base = "https://account.skynet.ie";
|
||||||
let link_new = format!("{url_base}/recovery_pass?auth={auth}");
|
let link_new = format!("{url_base}/recovery_pass?auth={auth}");
|
||||||
let discord = "https://discord.gg/mkuKJkCuyM";
|
let discord = "https://discord.gg/mkuKJkCuyM";
|
||||||
let sender = format!("UL Computer Society <{}>", &config.mail_user);
|
let sender = format!("UL Computer Society <{}>", &config.mail_user);
|
||||||
|
|
Loading…
Reference in a new issue