Bump to mail-parser 0.9

This commit is contained in:
mdecimus
2023-09-05 18:23:52 +02:00
parent 6939603932
commit 833db92ded
34 changed files with 513 additions and 580 deletions

View File

@@ -1123,6 +1123,10 @@
{
"name": "John (my dear friend)",
"email": "jdoe@one.test"
},
{
"name": "the end of the group",
"email": ""
}
],
"header:X-AddressesGroup-Single:asAddresses:all": [
@@ -1138,6 +1142,10 @@
{
"name": "John (my dear friend)",
"email": "jdoe@one.test"
},
{
"name": "the end of the group",
"email": ""
}
]
],
@@ -1161,7 +1169,12 @@
},
{
"name": null,
"addresses": []
"addresses": [
{
"name": "the end of the group",
"email": ""
}
]
}
],
"header:X-AddressesGroup-Single:asGroupedAddresses:all": [
@@ -1185,7 +1198,12 @@
},
{
"name": null,
"addresses": []
"addresses": [
{
"name": "the end of the group",
"email": ""
}
]
}
]
],

View File

@@ -1089,6 +1089,10 @@
{
"name": "John (my dear friend)",
"email": "jdoe@one.test"
},
{
"name": "the end of the group",
"email": ""
}
],
"header:X-AddressesGroup-Single:asAddresses:all": [
@@ -1104,6 +1108,10 @@
{
"name": "John (my dear friend)",
"email": "jdoe@one.test"
},
{
"name": "the end of the group",
"email": ""
}
]
],
@@ -1127,7 +1135,12 @@
},
{
"name": null,
"addresses": []
"addresses": [
{
"name": "the end of the group",
"email": ""
}
]
}
],
"header:X-AddressesGroup-Single:asGroupedAddresses:all": [
@@ -1151,7 +1164,12 @@
},
{
"name": null,
"addresses": []
"addresses": [
{
"name": "the end of the group",
"email": ""
}
]
}
]
],

View File

@@ -2,36 +2,36 @@
hostname = "test.example.org"
[server.listener.jmap]
bind = ["127.0.0.1:9990"]
url = "https://127.0.0.1:9990"
bind = ["0.0.0.0:9990"]
url = "https://0.0.0.0:9990"
protocol = "jmap"
max-connections = 8192
[server.listener.imap]
bind = ["127.0.0.1:9991"]
bind = ["0.0.0.0:143"]
protocol = "imap"
max-connections = 8192
[server.listener.imaptls]
bind = ["127.0.0.1:9992"]
bind = ["0.0.0.0:9992"]
protocol = "imap"
max-connections = 8192
tls.implicit = true
[server.listener.sieve]
bind = ["127.0.0.1:9993"]
bind = ["0.0.0.0:9993"]
protocol = "managesieve"
max-connections = 8192
tls.implicit = true
[server.listener.smtps]
bind = ['127.0.0.1:9994']
bind = ['0.0.0.0:9994']
greeting = 'Test SMTP instance'
protocol = 'smtp'
tls.implicit = true
[server.listener.smtp]
bind = ['127.0.0.1:9995']
bind = ['0.0.0.0:587']
greeting = 'Test SMTP instance'
protocol = 'smtp'
tls.implicit = false
@@ -46,7 +46,7 @@ certificate = "default"
[global.tracing]
method = "stdout"
level = "info"
level = "trace"
[session.ehlo]
reject-non-fqdn = false