Fix mail eventlog to show the new events

This commit is contained in:
Girish Ramakrishnan
2020-08-22 13:08:05 -07:00
parent 7c2322e6e0
commit 0458d2cb90

View File

@@ -310,6 +310,8 @@
<i class="fas fa-hand-paper" ng-show="eventlog.type === 'bounce'" uib-tooltip="Bounce"></i>
<i class="fas fa-filter" ng-show="eventlog.type === 'spam-learn'" uib-tooltip="Spam filter trained"></i>
<i class="fas fa-cog" ng-show="eventlog.type === 'max-email-size'" uib-tooltip="Settings changed"></i>
<i class="fas fa-cog" ng-show="eventlog.type === 'spam-acl'" uib-tooltip="Blacklisted address in spam configuration"></i>
<i class="fas fa-cog" ng-show="eventlog.type === 'spam-config'" uib-tooltip="Custom spam configuration"></i>
</td>
<td class="no-wrap"><span uib-tooltip="{{ eventlog.ts | prettyLongDate }}" class="arrow">{{ eventlog.ts | prettyDate }}</span></td>
<td>
@@ -329,6 +331,8 @@
<span ng-show="eventlog.type === 'denied'">Connection from {{ eventlog.remote.ip }} denied. {{ eventlog.details.message || eventlog.details.reason }}</span>
<span ng-show="eventlog.type === 'spam-learn'">Spam filter trained using mailbox content</span>
<span ng-show="eventlog.type === 'max-email-size'">Maximum email size was set to {{ eventlog.size | prettyDiskSize }} </span>
<span ng-show="eventlog.type === 'spam-acl'">Set {{ eventlog.blacklist.length }} address(es) in the spam blacklist </span>
<span ng-show="eventlog.type === 'spam-config'">Custom spam configuration was {{ eventlog.config ? 'set' : 'unset' }} </span>
</td>
</tr>
<tr ng-show="activity.activeEventLog === eventlog">