mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-25 06:55:53 +03:00
[GH-ISSUE #922] Configure disabling magic link sign-in #649
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#649
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @strboul on GitHub (Dec 6, 2023).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/922
In the home page, there's an option to sign-in with magic links. It'd be nice to have it gone for some self-installations that have no SMTP host configured.
For example,
SIGNIN_DISABLE_MAGIC_LINK(defaultTrue)@cuu508 commented on GitHub (Dec 7, 2023):
Thanks for the suggestion.
I'm not planning to work on this in near term myself, but I will accept a PR if changes are minimal and not disruptive.
I don't think a new setting is necessary, you could check if the EMAIL_HOST setting is empty (which is the default).
@cuu508 commented on GitHub (Apr 15, 2024):
cc: #989
@ilium007 commented on GitHub (Jun 10, 2025):
Is there any way to extend this to enable the magic link to be disabled if
EMAIL_HOST=is configured. I have a limited number of SMTP that can be relayed via a third party provider and do not want bots spamming / generating emails from the login page.@cuu508 commented on GitHub (Jun 10, 2025):
@ilium007 sign-in links are only sent for accounts that exist. If bots submit the form, they will likely use email addresses that have no corresponding account and so no email will be sent.
@ilium007 commented on GitHub (Jun 10, 2025):
Ok thanks