2023-01-30 16:27:06 +03:00
package smtpserver
import (
"fmt"
"net"
"os"
"testing"
"time"
"github.com/mjl-/bstore"
"github.com/mjl-/mox/dns"
"github.com/mjl-/mox/publicsuffix"
"github.com/mjl-/mox/smtp"
"github.com/mjl-/mox/store"
)
func TestReputation ( t * testing . T ) {
boolptr := func ( v bool ) * bool {
return & v
}
xtrue := boolptr ( true )
xfalse := boolptr ( false )
now := time . Now ( )
var uidgen store . UID
message := func ( junk bool , ageDays int , ehlo , mailfrom , msgfrom , rcptto string , msgfromvalidation store . Validation , dkimDomains [ ] string , mailfromValid , ehloValid bool , ip string ) store . Message {
mailFromValidation := store . ValidationNone
if mailfromValid {
mailFromValidation = store . ValidationPass
}
ehloValidation := store . ValidationNone
if ehloValid {
ehloValidation = store . ValidationPass
}
msgFrom , err := smtp . ParseAddress ( msgfrom )
if err != nil {
panic ( fmt . Errorf ( "parsing msgfrom %q: %w" , msgfrom , err ) )
}
rcptTo , err := smtp . ParseAddress ( rcptto )
if err != nil {
panic ( fmt . Errorf ( "parsing rcptto %q: %w" , rcptto , err ) )
}
mailFrom := msgFrom
if mailfrom != "" {
mailFrom , err = smtp . ParseAddress ( mailfrom )
if err != nil {
panic ( fmt . Errorf ( "parsing mailfrom %q: %w" , mailfrom , err ) )
}
}
2023-03-12 12:38:02 +03:00
ipmasked1 , ipmasked2 , ipmasked3 := ipmasked ( net . ParseIP ( ip ) )
2023-01-30 16:27:06 +03:00
uidgen ++
m := store . Message {
UID : uidgen , // Not relevant here.
MailboxID : 1 ,
MailboxOrigID : 1 ,
Received : now . Add ( time . Duration ( - ageDays ) * 24 * time . Hour ) ,
RemoteIP : ip ,
RemoteIPMasked1 : ipmasked1 ,
RemoteIPMasked2 : ipmasked2 ,
RemoteIPMasked3 : ipmasked3 ,
EHLODomain : ehlo ,
MailFrom : mailfrom ,
MailFromLocalpart : mailFrom . Localpart ,
MailFromDomain : mailFrom . Domain . Name ( ) ,
RcptToLocalpart : rcptTo . Localpart ,
RcptToDomain : rcptTo . Domain . Name ( ) ,
MsgFromLocalpart : msgFrom . Localpart ,
MsgFromDomain : msgFrom . Domain . Name ( ) ,
2023-05-22 15:40:36 +03:00
MsgFromOrgDomain : publicsuffix . Lookup ( ctxbg , msgFrom . Domain ) . Name ( ) ,
2023-01-30 16:27:06 +03:00
MailFromValidated : mailfromValid ,
EHLOValidated : ehloValid ,
MsgFromValidated : msgfromvalidation == store . ValidationStrict || msgfromvalidation == store . ValidationRelaxed || msgfromvalidation == store . ValidationDMARC ,
MailFromValidation : mailFromValidation ,
EHLOValidation : ehloValidation ,
MsgFromValidation : msgfromvalidation ,
DKIMDomains : dkimDomains ,
Flags : store . Flags {
improve training of junk filter
before, we used heuristics to decide when to train/untrain a message as junk or
nonjunk: the message had to be seen, be in certain mailboxes. then if a message
was marked as junk, it was junk. and otherwise it was nonjunk. this wasn't good
enough: you may want to keep some messages around as neither junk or nonjunk.
and that wasn't possible.
ideally, we would just look at the imap $Junk and $NotJunk flags. the problem
is that mail clients don't set these flags, or don't make it easy. thunderbird
can set the flags based on its own bayesian filter. it has a shortcut for
marking Junk and moving it to the junk folder (good), but the counterpart of
notjunk only marks a message as notjunk without showing in the UI that it was
marked as notjunk. there is also no "move and mark as notjunk" mechanism. e.g.
"archive" does not mark a message as notjunk. ios mail and mutt don't appear to
have any way to see or change the $Junk and $NotJunk flags.
what email clients do have is the ability to move messages to other
mailboxes/folders. so mox now has a mechanism that allows you to configure
mailboxes that automatically set $Junk or $NotJunk (or clear both) when a
message is moved/copied/delivered to that folder. e.g. a mailbox called junk or
spam or rejects marks its messags as junk. inbox, postmaster, dmarc, tlsrpt,
neutral* mark their messages as neither junk or notjunk. other folders mark
their messages as notjunk. e.g. list/*, archive. this functionality is
optional, but enabled with the quickstart and for new accounts.
also, mox now keeps track of the previous training of a message and will only
untrain/train if needed. before, there probably have been duplicate or missing
(un)trainings.
this also includes a new subcommand "retrain" to recreate the junkfilter for an
account. you should run it after updating to this version. and you should
probably also modify your account config to include the AutomaticJunkFlags.
2023-02-12 01:00:12 +03:00
Junk : junk ,
Notjunk : ! junk ,
2023-01-30 16:27:06 +03:00
} ,
}
return m
}
check := func ( m store . Message , history [ ] store . Message , expJunk * bool , expConclusive bool , expMethod reputationMethod ) {
t . Helper ( )
p := "../testdata/smtpserver-reputation.db"
defer os . Remove ( p )
add a "backup" subcommand to make consistent backups, and a "verifydata" subcommand to verify a backup before restoring, and add tests for future upgrades
the backup command will make consistent snapshots of all the database files. i
had been copying the db files before, and it usually works. but if the file is
modified during the backup, it is inconsistent and is likely to generate errors
when reading (can be at any moment in the future, when reading some db page).
"mox backup" opens the database file and writes out a copy in a transaction.
it also duplicates the message files.
before doing a restore, you could run "mox verifydata" on the to-be-restored
"data" directory. it check the database files, and compares the message files
with the database.
the new "gentestdata" subcommand generates a basic "data" directory, with a
queue and a few accounts. we will use it in the future along with "verifydata"
to test upgrades from old version to the latest version. both when going to the
next version, and when skipping several versions. the script test-upgrades.sh
executes these tests and doesn't do anything at the moment, because no releases
have this subcommand yet.
inspired by a failed upgrade attempt of a pre-release version.
2023-05-26 20:26:51 +03:00
db , err := bstore . Open ( ctxbg , p , & bstore . Options { Timeout : 5 * time . Second } , store . DBTypes ... )
2023-01-30 16:27:06 +03:00
tcheck ( t , err , "open db" )
defer db . Close ( )
2023-05-22 15:40:36 +03:00
err = db . Write ( ctxbg , func ( tx * bstore . Tx ) error {
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
inbox := store . Mailbox { ID : 1 , Name : "Inbox" , HaveCounts : true }
err = tx . Insert ( & inbox )
2023-01-30 16:27:06 +03:00
tcheck ( t , err , "insert into db" )
for _ , hm := range history {
err := tx . Insert ( & hm )
tcheck ( t , err , "insert message" )
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
inbox . Add ( hm . MailboxCounts ( ) )
2023-01-30 16:27:06 +03:00
rcptToDomain , err := dns . ParseDomain ( hm . RcptToDomain )
tcheck ( t , err , "parse rcptToDomain" )
2023-05-22 15:40:36 +03:00
rcptToOrgDomain := publicsuffix . Lookup ( ctxbg , rcptToDomain )
2023-01-30 16:27:06 +03:00
r := store . Recipient { MessageID : hm . ID , Localpart : hm . RcptToLocalpart , Domain : hm . RcptToDomain , OrgDomain : rcptToOrgDomain . Name ( ) , Sent : hm . Received }
err = tx . Insert ( & r )
tcheck ( t , err , "insert recipient" )
}
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
err = tx . Update ( & inbox )
tcheck ( t , err , "update mailbox counts" )
2023-01-30 16:27:06 +03:00
return nil
} )
tcheck ( t , err , "commit" )
var isjunk * bool
var conclusive bool
var method reputationMethod
2023-05-22 15:40:36 +03:00
err = db . Read ( ctxbg , func ( tx * bstore . Tx ) error {
2023-01-30 16:27:06 +03:00
var err error
isjunk , conclusive , method , err = reputation ( tx , xlog , & m )
return err
} )
tcheck ( t , err , "read tx" )
if method != expMethod {
t . Fatalf ( "got method %q, expected %q" , method , expMethod )
}
if conclusive != expConclusive {
t . Fatalf ( "got conclusive %v, expected %v" , conclusive , expConclusive )
}
if ( isjunk == nil ) != ( expJunk == nil ) || ( isjunk != nil && expJunk != nil && * isjunk != * expJunk ) {
t . Fatalf ( "got isjunk %v, expected %v" , isjunk , expJunk )
}
}
var msgs [ ] store . Message
var m store . Message
msgs = [ ] store . Message {
message ( false , 4 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationDMARC , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 3 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 2 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) , // causes accept
message ( true , 1 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationRelaxed , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationDMARC , [ ] string { "othersite.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xfalse , true , methodMsgfromFull )
// Two most recents are spam, reject.
msgs = [ ] store . Message {
message ( false , 3 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 2 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 1 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationDMARC , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , true , methodMsgfromFull )
// If localpart matches, other localsparts are not used.
msgs = [ ] store . Message {
message ( true , 3 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 2 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationRelaxed , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 1 , "host.othersite.example" , "" , "b@remote.example" , "mjl@local.example" , store . ValidationDMARC , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) , // other localpart, ignored
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationRelaxed , [ ] string { "othersite.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , true , methodMsgfromFull )
// Incoming message, we have only seen other unverified msgs from sender.
msgs = [ ] store . Message {
message ( true , 3 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 2 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "othersite.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , false , methodMsgfromFull )
// Incoming message, we have only seen verified msgs from sender, and at least two, so this is a likely but inconclusive spam.
msgs = [ ] store . Message {
message ( false , 3 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" ) ,
message ( false , 2 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationNone , [ ] string { } , false , false , "10.10.0.1" )
check ( m , msgs , xtrue , false , methodMsgfromFull )
// Incoming message, we have only seen 1 verified message from sender, so inconclusive for reject.
msgs = [ ] store . Message {
message ( false , 2 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationNone , [ ] string { } , false , false , "10.10.0.1" )
check ( m , msgs , xtrue , false , methodMsgfromFull )
// Incoming message, we have only seen 1 verified message from sender, and it was spam, so we can safely reject.
msgs = [ ] store . Message {
message ( true , 2 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationNone , [ ] string { } , false , false , "10.10.0.1" )
check ( m , msgs , xtrue , true , methodMsgfromFull )
// We received spam from other senders in the domain, but we sent to msgfrom.
msgs = [ ] store . Message {
message ( true , 3 , "host.othersite.example" , "" , "a@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" ) , // other localpart
message ( false , 2 , "host.local.example" , "" , "mjl@local.example" , "other@remote.example" , store . ValidationNone , [ ] string { } , false , false , "127.0.0.1" ) , // we sent to remote, accept
message ( true , 1 , "host.othersite.example" , "" , "a@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" ) , // other localpart
message ( true , 1 , "host.othersite.example" , "" , "a@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" ) , // other localpart
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationNone , [ ] string { } , false , false , "10.10.0.1" )
check ( m , msgs , xfalse , true , methodMsgtoFull )
// Other messages in same domain, inconclusive.
msgs = [ ] store . Message {
message ( true , 7 * 30 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 3 * 30 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 3 * 30 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 3 * 30 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 3 * 30 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 8 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 8 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 4 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 2 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 1 , "host.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" )
check ( m , msgs , nil , false , methodMsgfromDomain )
// Mostly ham, so we'll allow it.
msgs = [ ] store . Message {
message ( false , 7 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 3 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 3 * 30 , "host2.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite3.example" } , true , true , "10.0.0.2" ) ,
message ( false , 3 * 30 , "host2.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.2" ) ,
message ( false , 3 * 30 , "host3.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( false , 8 , "host3.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.100" ) ,
message ( false , 8 , "host4.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.4" ) ,
message ( false , 4 , "host4.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.4" ) ,
message ( false , 2 , "host5.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.10.0.5" ) ,
message ( true , 1 , "host5.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "none.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" , "othersite3.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xfalse , true , methodMsgfromDomain )
// Not clearly spam, so inconclusive.
msgs = [ ] store . Message {
message ( true , 3 * 30 , "host3.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.4" ) ,
message ( true , 2 , "host5.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.10.0.5" ) ,
message ( false , 1 , "host5.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "none.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" , "othersite3.example" } , true , true , "10.0.0.1" )
check ( m , msgs , nil , false , methodMsgfromDomain )
// We only received spam from this domain by at least 3 localparts: reject.
msgs = [ ] store . Message {
message ( true , 3 * 30 , "host3.othersite.example" , "" , "a@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "" , "b@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.4" ) ,
message ( true , 2 , "host5.othersite.example" , "" , "c@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.10.0.5" ) ,
message ( true , 1 , "host5.othersite.example" , "" , "c@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "none.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" , "othersite3.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , true , methodMsgfromDomain )
// We only received spam from this org domain by at least 3 localparts. so reject.
msgs = [ ] store . Message {
message ( true , 3 * 30 , "host3.othersite.example" , "" , "a@a.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "" , "b@b.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.4" ) ,
message ( true , 2 , "host5.othersite.example" , "" , "c@c.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.10.0.5" ) ,
message ( true , 1 , "host5.othersite.example" , "" , "c@c.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "none.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@d.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" , "othersite3.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , true , methodMsgfromOrgDomain )
// We've only seen spam, but we don"t want to reject an entire domain with only 2 froms, so inconclusive.
msgs = [ ] store . Message {
message ( true , 2 * 30 , "host3.othersite.example" , "" , "a@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "" , "a@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.4" ) ,
message ( true , 2 , "host5.othersite.example" , "" , "b@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.10.0.5" ) ,
message ( true , 1 , "host5.othersite.example" , "" , "b@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , false , methodMsgfromDomain )
// we"ve only seen spam, but we don"t want to reject an entire orgdomain with only 2 froms, so inconclusive.
msgs = [ ] store . Message {
message ( true , 2 * 30 , "host3.othersite.example" , "" , "a@a.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "" , "a@a.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.4" ) ,
message ( true , 2 , "host5.othersite.example" , "" , "b@b.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.10.0.5" ) ,
message ( true , 1 , "host5.othersite.example" , "" , "b@b.remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host.othersite.example" , "" , "other@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "remote.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , false , methodMsgfromOrgDomain )
// All dkim/spf signs are good, so accept.
msgs = [ ] store . Message {
message ( false , 2 * 30 , "host3.esp.example" , "bulk@esp.example" , "a@espcustomer1.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.0.0.100" ) ,
message ( false , 4 , "host4.esp.example" , "bulk@esp.example" , "b@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.0.0.4" ) ,
message ( false , 2 , "host5.esp.example" , "bulk@esp.example" , "c@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.10.0.5" ) ,
message ( false , 1 , "host5.esp.example" , "bulk@esp.example" , "d@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "espcustomer2.example" , "esp.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host3.esp.example" , "bulk@esp.example" , "other@espcustomer3.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "espcustomer3.example" , "esp.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xfalse , true , "dkimspf" )
// All dkim/spf signs are bad, so reject.
msgs = [ ] store . Message {
message ( true , 2 * 30 , "host3.esp.example" , "bulk@esp.example" , "a@espcustomer1.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.esp.example" , "bulk@esp.example" , "b@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.0.0.4" ) ,
message ( true , 2 , "host5.esp.example" , "bulk@esp.example" , "c@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.10.0.5" ) ,
message ( true , 1 , "host5.esp.example" , "bulk@esp.example" , "d@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "espcustomer2.example" , "esp.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host3.esp.example" , "bulk@esp.example" , "other@espcustomer3.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "espcustomer3.example" , "esp.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , true , "dkimspf" )
// Mixed dkim/spf signals, inconclusive.
msgs = [ ] store . Message {
message ( false , 2 * 30 , "host3.esp.example" , "bulk@esp.example" , "a@espcustomer1.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.0.0.100" ) ,
message ( false , 4 , "host4.esp.example" , "bulk@esp.example" , "b@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.0.0.4" ) ,
message ( true , 2 , "host5.esp.example" , "bulk@esp.example" , "c@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.10.0.5" ) ,
message ( true , 1 , "host5.esp.example" , "bulk@esp.example" , "d@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "espcustomer2.example" , "esp.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host3.esp.example" , "bulk@esp.example" , "other@espcustomer3.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "espcustomer3.example" , "esp.example" } , true , true , "10.0.0.1" )
check ( m , msgs , nil , false , "dkimspf" )
// Just one dkim/spf message, enough for accept.
msgs = [ ] store . Message {
message ( false , 4 , "host4.esp.example" , "bulk@esp.example" , "b@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.0.0.4" ) ,
}
m = message ( false , 0 , "host3.esp.example" , "bulk@esp.example" , "other@espcustomer3.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "espcustomer3.example" , "esp.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xfalse , true , "dkimspf" )
// Just one dkim/spf message, not enough for reject.
msgs = [ ] store . Message {
message ( true , 4 , "host4.esp.example" , "bulk@esp.example" , "b@espcustomer2.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "esp.example" } , true , true , "10.0.0.4" ) ,
}
m = message ( false , 0 , "host3.esp.example" , "bulk@esp.example" , "other@espcustomer3.example" , "mjl@local.example" , store . ValidationNone , [ ] string { "espcustomer3.example" , "esp.example" } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , false , "dkimspf" )
// The exact IP is almost bad, but we need 3 msgs. Other IPs don't matter.
msgs = [ ] store . Message {
message ( false , 7 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) , // too old
message ( true , 4 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 2 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 1 * 30 , "host2.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite3.example" } , true , true , "10.0.0.2" ) , // irrelevant
}
m = message ( false , 0 , "host.different.example" , "sender@different.example" , "other@other.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , false , "ip1" )
// The exact IP is almost ok, so accept.
msgs = [ ] store . Message {
message ( true , 7 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) , // too old
message ( false , 2 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 2 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 2 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( false , 1 * 30 , "host2.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite3.example" } , true , true , "10.0.0.2" ) , // irrelevant
}
m = message ( false , 0 , "host.different.example" , "sender@different.example" , "other@other.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { } , true , true , "10.0.0.1" )
check ( m , msgs , xfalse , true , "ip1" )
// The exact IP is bad, with enough msgs. Other IPs don't matter.
msgs = [ ] store . Message {
message ( true , 4 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) , // too old
message ( true , 2 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 2 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 1 * 30 , "host1.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.1" ) ,
message ( true , 1 * 30 , "host2.othersite.example" , "" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite3.example" } , true , true , "10.0.0.2" ) , // irrelevant
}
m = message ( false , 0 , "host.different.example" , "sender@different.example" , "other@other.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , true , "ip1" )
// No exact ip match, nearby IPs (we need 5) are all bad, so reject.
msgs = [ ] store . Message {
message ( true , 2 * 30 , "host2.othersite.example" , "sender3@othersite3.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite3.example" } , true , true , "10.0.0.2" ) ,
message ( true , 2 * 30 , "host2.othersite.example" , "sender@othersite2.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.2" ) ,
message ( false , 2 * 30 , "host3.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) , // other ip
message ( false , 8 , "host3.othersite.example" , "sender@othersite2.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.100" ) , // other ip
message ( true , 8 , "host4.othersite.example" , "sender@othersite2.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.4" ) ,
message ( true , 4 , "host4.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.4" ) ,
message ( true , 2 , "host4.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.4" ) ,
message ( false , 2 , "host5.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.10.0.5" ) , // other ip
message ( false , 1 , "host5.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "none.example" } , true , true , "10.10.0.5" ) , // other ip
}
m = message ( false , 0 , "host.different.example" , "sender@different.example" , "other@other.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , true , "ip2" )
// IPs further away are bad (we need 10), reject.
msgs = [ ] store . Message {
message ( true , 2 * 30 , "host2.othersite.example" , "sender3@othersite3.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite3.example" } , true , true , "10.0.0.100" ) ,
message ( true , 2 * 30 , "host2.othersite.example" , "sender@othersite2.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.100" ) ,
message ( true , 2 * 30 , "host2.othersite.example" , "sender@othersite2.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.100" ) ,
message ( true , 2 * 30 , "host3.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( true , 8 , "host3.othersite.example" , "sender@othersite2.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.100" ) ,
message ( true , 8 , "host4.othersite.example" , "sender@othersite2.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite2.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( true , 4 , "host4.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.0.0.100" ) ,
message ( false , 2 , "host5.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "othersite.example" } , true , true , "10.10.0.5" ) ,
message ( false , 1 , "host5.othersite.example" , "sender@othersite.example" , "second@remote.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { "none.example" } , true , true , "10.10.0.5" ) ,
}
m = message ( false , 0 , "host.different.example" , "sender@different.example" , "other@other.example" , "mjl@local.example" , store . ValidationStrict , [ ] string { } , true , true , "10.0.0.1" )
check ( m , msgs , xtrue , true , "ip3" )
}