docs: use mailto scheme for security email in SECURITY.md - #2588
Merged
Conversation
SECURITY.md still links the security contact as (security@hangfire.io), which renders as a relative URL that GET 404s under the repo. README.md got the mailto: prefix in 8c2e32e; apply the same fix here. Co-authored-by: FirmamentalSpring <287222957+FirmaSpring@users.noreply.github.com>
odinserj
approved these changes
Aug 27, 2026
Member
|
Thank you @FirmaSpring! |
This was referenced Aug 28, 2026
Bump Hangfire.AspNetCore from 1.8.23 to 1.8.25
vehiclevisionjp/VehicleVision.Pleasanter.JobRunner#28
Open
Open
This was referenced Aug 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
SECURITY.mdstill writes the security contact as:Without a
mailto:scheme this renders as a relative URL. Verified with a GET:So the rendered link leads to a 404 page instead of opening a mail client.
README.mdalready received themailto:prefix in 8c2e32e;SECURITY.mdwas left out.Solution
Use
mailto:security@hangfire.ioas the link target inSECURITY.md, matching the already-fixed README.Verification
Markdown-only change. Checked open and closed PRs for prior mailto/security-link fixes on SECURITY.md and found none.