mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2026-03-05 15:57:23 +01:00
Better handling of mail addressed to an alias
This commit is contained in:
@@ -61,6 +61,7 @@
|
||||
</template>
|
||||
<template #row-details="row">
|
||||
<b-card>
|
||||
<div><strong>Sent to alias</strong>: {{ row.item.orig_to }}</div>
|
||||
<div><strong>Connection disposition</strong>: {{ disposition_formatter(row.item.disposition) }}</div>
|
||||
<div v-if="row.item.dkim_reason"><strong>Dkim reason</strong>: {{row.item.dkim_reason}}</div>
|
||||
<div v-if="row.item.dmarc_reason"><strong>Dmarc reason</strong>: {{row.item.dmarc_reason}}</div>
|
||||
|
||||
@@ -128,8 +128,8 @@ Vue.component('panel-user-activity', function(resolve, reject) {
|
||||
'dmarc_reason',
|
||||
'postgrey_reason',
|
||||
'postgrey_delay',
|
||||
'spam_score'
|
||||
|
||||
'spam_score',
|
||||
'orig_to'
|
||||
]);
|
||||
// combine fields 'envelope_from' and 'sasl_username'
|
||||
var f = this.received_mail.combine_fields(
|
||||
@@ -140,7 +140,7 @@ Vue.component('panel-user-activity', function(resolve, reject) {
|
||||
return v;
|
||||
return `${v} (${item.sasl_username})`;
|
||||
});
|
||||
f.label = 'Evelope From (user)';
|
||||
f.label = 'Envelope From (user)';
|
||||
},
|
||||
|
||||
get_row_limit: function() {
|
||||
|
||||
Reference in New Issue
Block a user