diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/FUNDING.yml | 4 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE.md | 1 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 44 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 32 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/support_question.md | 15 | ||||
-rw-r--r-- | .github/stale.yml | 17 |
6 files changed, 113 insertions, 0 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..ea05c64 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,4 @@ +# These are supported funding model platforms + +github: vstakhov +open_collective: rspamd_project diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..3cb5540 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1 @@ +Please raise issues via the [new interface](https://github.com/rspamd/rspamd/issues/new/choose) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..d34d9eb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,44 @@ +--- +name: Bug report +about: Create a report to let us know about issue in Rspamd +title: "[BUG]" +labels: bug +assignees: '' + +--- + +<!-- + +Do you want to ask a question? Are you looking for support? Here are the places where you can get what you need: https://rspamd.com/support.html + +--> + +### Prerequisites + +* [ ] Put an X between the brackets on this line if you have done all of the following: + * Read about bug reporting in general: https://rspamd.com/doc/faq.html#how-to-report-bugs-found-in-rspamd + * Enabled relevant debugging logs: https://rspamd.com/doc/faq.html#how-to-debug-some-module-in-rspamd + * Checked the FAQs about Core files in case of fatal crash: https://rspamd.com/doc/faq.html#how-to-figure-out-why-rspamd-process-crashed + * Tried ASAN package and obtained the ASAN report (if possible): https://rspamd.com/doc/faq.html#asan-builds + * Checked that your issue isn't already filed: https://github.com/issues?utf8=%E2%9C%93&q=is%3Aissue+user%3Arspamd + * Checked that there is not already an experimental package or master branch + +**Describe the bug** +A clear and concise description of what the bug is. + +### Steps to Reproduce + +1. [First Step] +2. [Second Step] +3. [and so on...] + +**Expected behavior** +A clear and concise description of what you expected to happen. + +### Versions + +You can get this information from copy and pasting the output of `rspamd --version` from the command line. Also, please include the **OS** and what version and architecture including the generation of CPU model (e.g. Haswell) where applicable, of the OS you're running. + +### Additional Information + +Any additional information, configuration or data that might be necessary to reproduce the issue. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..46ed15e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,32 @@ +--- +name: Feature request +about: Suggest an idea for Rspamd +title: "[Feature]" +labels: enhancement +assignees: '' + +--- + +<!-- + +Do you want to ask a question? Are you looking for support? Here are the places where you can get what you need: https://rspamd.com/support.html + +Feature requests are welcomed. Before opening a feature request, please take a moment to find out whether your idea fits with the scope and goals of the project. It’s up to you to make a strong case to convince the project maintainers the merits of the feature. Please provide as much detail and context as possible. + +--> + +## Summary + +One paragraph explanation of the feature. + +## Motivation + +Why are we doing this? What use cases does it support? What is the expected outcome? + +## Describe alternatives you've considered + +A clear and concise description of the alternative solutions you've considered. Be sure to explain why Rspamd's existing customizability isn't suitable for this feature. + +## Additional context + +Add any other context about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/support_question.md b/.github/ISSUE_TEMPLATE/support_question.md new file mode 100644 index 0000000..8740783 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/support_question.md @@ -0,0 +1,15 @@ +--- +name: Support Question +about: If you have a question 💬, please check out our Mailing lists or other support channels! + +--- + +--------------^ Click "Preview" for a nicer view! +We primarily use GitHub as an issue tracker; for usage and support questions, please check out these resources below. Thanks! + +--- + +* Mailing list: https://lists.rspamd.com/mailman/listinfo (you can subscribe on that page or browse the archives) +* Telegram channel: http://t.me/rspamd +* Also have a look at the following page for more information on how to get support: + https://rspamd.com/support.html diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000..dc90e5a --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - security +# Label to use when marking an issue as stale +staleLabel: wontfix +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false |