mirror of
https://github.com/axllent/mailpit.git
synced 2025-02-05 13:14:57 +02:00
Remove redundant references to beta testing
This commit is contained in:
parent
ebf7bb6348
commit
c81ea54c87
@ -727,7 +727,7 @@ func ReleaseMessage(w http.ResponseWriter, r *http.Request) {
|
|||||||
func HTMLCheck(w http.ResponseWriter, r *http.Request) {
|
func HTMLCheck(w http.ResponseWriter, r *http.Request) {
|
||||||
// swagger:route GET /api/v1/message/{ID}/html-check Other HTMLCheck
|
// swagger:route GET /api/v1/message/{ID}/html-check Other HTMLCheck
|
||||||
//
|
//
|
||||||
// # HTML check (beta)
|
// # HTML check
|
||||||
//
|
//
|
||||||
// Returns the summary of the message HTML checker.
|
// Returns the summary of the message HTML checker.
|
||||||
//
|
//
|
||||||
@ -780,7 +780,7 @@ func HTMLCheck(w http.ResponseWriter, r *http.Request) {
|
|||||||
func LinkCheck(w http.ResponseWriter, r *http.Request) {
|
func LinkCheck(w http.ResponseWriter, r *http.Request) {
|
||||||
// swagger:route GET /api/v1/message/{ID}/link-check Other LinkCheck
|
// swagger:route GET /api/v1/message/{ID}/link-check Other LinkCheck
|
||||||
//
|
//
|
||||||
// # Link check (beta)
|
// # Link check
|
||||||
//
|
//
|
||||||
// Returns the summary of the message Link checker.
|
// Returns the summary of the message Link checker.
|
||||||
//
|
//
|
||||||
@ -831,12 +831,9 @@ func LinkCheck(w http.ResponseWriter, r *http.Request) {
|
|||||||
func SpamAssassinCheck(w http.ResponseWriter, r *http.Request) {
|
func SpamAssassinCheck(w http.ResponseWriter, r *http.Request) {
|
||||||
// swagger:route GET /api/v1/message/{ID}/sa-check Other SpamAssassinCheck
|
// swagger:route GET /api/v1/message/{ID}/sa-check Other SpamAssassinCheck
|
||||||
//
|
//
|
||||||
// # SpamAssassin check (beta)
|
// # SpamAssassin check
|
||||||
//
|
//
|
||||||
// Returns the SpamAssassin (if enabled) summary of the message.
|
// Returns the SpamAssassin summary (if enabled) of the message.
|
||||||
//
|
|
||||||
// NOTE: This feature is currently in beta and is documented for reference only.
|
|
||||||
// Please do not integrate with it (yet) as there may be changes.
|
|
||||||
//
|
//
|
||||||
// Produces:
|
// Produces:
|
||||||
// - application/json
|
// - application/json
|
||||||
|
@ -125,7 +125,7 @@ export default {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
scoreColor: function() {
|
scoreColor: function () {
|
||||||
return this.graphSections[0].color
|
return this.graphSections[0].color
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@ -206,10 +206,6 @@ export default {
|
|||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p>
|
|
||||||
Spam Analysis is currently in beta. Constructive feedback is welcome via
|
|
||||||
<a href="https://github.com/axllent/mailpit/issues" target="_blank">GitHub</a>.
|
|
||||||
</p>
|
|
||||||
<div class="accordion" id="SpamAnalysisAboutAccordion">
|
<div class="accordion" id="SpamAnalysisAboutAccordion">
|
||||||
<div class="accordion-item">
|
<div class="accordion-item">
|
||||||
<h2 class="accordion-header">
|
<h2 class="accordion-header">
|
||||||
@ -218,13 +214,14 @@ export default {
|
|||||||
What is Spam Analysis?
|
What is Spam Analysis?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div id="col1" class="accordion-collapse collapse" data-bs-parent="#SpamAnalysisAboutAccordion">
|
<div id="col1" class="accordion-collapse collapse"
|
||||||
|
data-bs-parent="#SpamAnalysisAboutAccordion">
|
||||||
<div class="accordion-body">
|
<div class="accordion-body">
|
||||||
<p>
|
<p>
|
||||||
Mailpit integrates with SpamAssassin to provide you with some insight into the
|
Mailpit integrates with SpamAssassin to provide you with some insight into the
|
||||||
"spamminess" of your messages. It sends your complete message (including any
|
"spamminess" of your messages. It sends your complete message (including any
|
||||||
attachments) to a running SpamAssassin server and then displays the results returned
|
attachments) to a running SpamAssassin server and then displays the results
|
||||||
by SpamAssassin.
|
returned by SpamAssassin.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -236,16 +233,17 @@ export default {
|
|||||||
How does the point system work?
|
How does the point system work?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div id="col2" class="accordion-collapse collapse" data-bs-parent="#SpamAnalysisAboutAccordion">
|
<div id="col2" class="accordion-collapse collapse"
|
||||||
|
data-bs-parent="#SpamAnalysisAboutAccordion">
|
||||||
<div class="accordion-body">
|
<div class="accordion-body">
|
||||||
<p>
|
<p>
|
||||||
The default spam threshold is <code>5</code>, meaning any score lower than 5 is
|
The default spam threshold is <code>5</code>, meaning any score lower than 5 is
|
||||||
considered ham (not spam), and any score of 5 or above is spam.
|
considered ham (not spam), and any score of 5 or above is spam.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
SpamAssassin will also return the tests which are triggered by the message. These
|
SpamAssassin will also return the tests which are triggered by the message.
|
||||||
tests can differ depending on the configuration of your SpamAssassin server. The
|
These tests can differ depending on the configuration of your SpamAssassin
|
||||||
total of this score makes up the the "spamminess" of the message.
|
server. The total of this score makes up the the "spamminess" of the message.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -257,7 +255,8 @@ export default {
|
|||||||
But I don't agree with the results...
|
But I don't agree with the results...
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div id="col3" class="accordion-collapse collapse" data-bs-parent="#SpamAnalysisAboutAccordion">
|
<div id="col3" class="accordion-collapse collapse"
|
||||||
|
data-bs-parent="#SpamAnalysisAboutAccordion">
|
||||||
<div class="accordion-body">
|
<div class="accordion-body">
|
||||||
<p>
|
<p>
|
||||||
Mailpit does not manipulate the results nor determine the "spamminess" of
|
Mailpit does not manipulate the results nor determine the "spamminess" of
|
||||||
@ -265,8 +264,9 @@ export default {
|
|||||||
dependent on how SpamAssassin is set up and optionally trained.
|
dependent on how SpamAssassin is set up and optionally trained.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
This tool is simply provided as an aid to assist you. If you are running your own
|
This tool is simply provided as an aid to assist you. If you are running your
|
||||||
instance of SpamAssassin, then you look into your SpamAssassin configuration.
|
own instance of SpamAssassin, then you look into your SpamAssassin
|
||||||
|
configuration.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -278,14 +278,15 @@ export default {
|
|||||||
Where can I find more information about the triggered rules?
|
Where can I find more information about the triggered rules?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div id="col4" class="accordion-collapse collapse" data-bs-parent="#SpamAnalysisAboutAccordion">
|
<div id="col4" class="accordion-collapse collapse"
|
||||||
|
data-bs-parent="#SpamAnalysisAboutAccordion">
|
||||||
<div class="accordion-body">
|
<div class="accordion-body">
|
||||||
<p>
|
<p>
|
||||||
Unfortunately the current <a href="https://spamassassin.apache.org/"
|
Unfortunately the current <a href="https://spamassassin.apache.org/"
|
||||||
target="_blank">SpamAssassin website</a> no longer contains any relative
|
target="_blank">SpamAssassin website</a> no longer contains any relative
|
||||||
documentation
|
documentation about these, most likely because the rules come from different
|
||||||
about these, most likely because the rules come from different locations and change
|
locations and change often. You will need to search the internet for these
|
||||||
often. You will need to search the internet for these yourself.
|
yourself.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -135,7 +135,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"Other"
|
"Other"
|
||||||
],
|
],
|
||||||
"summary": "HTML check (beta)",
|
"summary": "HTML check",
|
||||||
"operationId": "HTMLCheck",
|
"operationId": "HTMLCheck",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
@ -172,7 +172,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"Other"
|
"Other"
|
||||||
],
|
],
|
||||||
"summary": "Link check (beta)",
|
"summary": "Link check",
|
||||||
"operationId": "LinkCheck",
|
"operationId": "LinkCheck",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
@ -368,7 +368,7 @@
|
|||||||
},
|
},
|
||||||
"/api/v1/message/{ID}/sa-check": {
|
"/api/v1/message/{ID}/sa-check": {
|
||||||
"get": {
|
"get": {
|
||||||
"description": "Returns the SpamAssassin (if enabled) summary of the message.\n\nNOTE: This feature is currently in beta and is documented for reference only.\nPlease do not integrate with it (yet) as there may be changes.",
|
"description": "Returns the SpamAssassin summary (if enabled) of the message.",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
@ -379,7 +379,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"Other"
|
"Other"
|
||||||
],
|
],
|
||||||
"summary": "SpamAssassin check (beta)",
|
"summary": "SpamAssassin check",
|
||||||
"operationId": "SpamAssassinCheck",
|
"operationId": "SpamAssassinCheck",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user