1
0
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:
downtownallday
2021-01-13 22:29:16 -05:00
parent 523a63f776
commit 9b89a5c504
6 changed files with 36 additions and 6 deletions

View File

@@ -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>

View File

@@ -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() {