-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from MEHRSHAD-MIRSHEKARY/fix/email-timestamp
π Fix/email timestamp
- Loading branch information
Showing
4 changed files
with
65 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
## Supported Versions | ||
|
||
We actively support the following versions of `dj-logging` with security updates: | ||
We actively support the following versions of `django_logging` with security updates: | ||
|
||
| Version | Supported | | ||
| --------- | ------------------ | | ||
|
@@ -12,7 +12,7 @@ We actively support the following versions of `dj-logging` with security updates | |
|
||
## Reporting a Vulnerability | ||
|
||
We take security issues seriously. If you find a vulnerability in `dj-logging`, please report it confidentially. Here are the steps to report security vulnerabilities: | ||
We take security issues seriously. If you find a vulnerability in `django_logging`, please report it confidentially. Here are the steps to report security vulnerabilities: | ||
|
||
1. **Email**: Please send an email to [[email protected]](mailto:[email protected]) with a detailed description of the vulnerability. | ||
2. **Details**: In your email, include the following details: | ||
|
@@ -29,18 +29,18 @@ We will: | |
## Handling Vulnerabilities | ||
|
||
When a vulnerability is confirmed: | ||
- We will create a fix and apply it to all actively supported versions of `dj-logging`. | ||
- We will create a fix and apply it to all actively supported versions of `django_logging`. | ||
- A new release with the security fix will be published, and the vulnerability will be disclosed in the changelog or via a security advisory. | ||
- We may delay the disclosure of details about the vulnerability until a sufficient number of users have updated to the patched version. | ||
|
||
## General Security Guidelines | ||
|
||
- Keep your `dj-logging` package up to date with the latest versions to ensure you benefit from the latest security fixes. | ||
- Keep your `django_logging` package up to date with the latest versions to ensure you benefit from the latest security fixes. | ||
- Follow our changelog for announcements regarding security fixes. | ||
- Ensure that your logging configuration is secure and does not expose sensitive information in log files. | ||
|
||
## Responsible Disclosure | ||
|
||
We strongly encourage responsible disclosure and will work to fix issues in a timely manner. We appreciate any effort to help make `dj-logging` more secure for all users. | ||
We strongly encourage responsible disclosure and will work to fix issues in a timely manner. We appreciate any effort to help make `django_logging` more secure for all users. | ||
|
||
Thank you for helping us improve the security of `dj-logging`! | ||
Thank you for helping us improve the security of `django_logging`! |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,5 +47,9 @@ def configure_django_settings(): | |
EMAIL_HOST_PASSWORD="the_password", | ||
DEFAULT_FROM_EMAIL="[email protected]", | ||
ADMIN_EMAIL="[email protected]", | ||
LANGUAGE_CODE="en-us", | ||
TIME_ZONE="UTC", | ||
USE_I18N=True, | ||
USE_TZ=True, | ||
) | ||
django.setup() |