We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e431d47 commit 64d1ef7Copy full SHA for 64d1ef7
1 file changed
webhooks.js
@@ -170,7 +170,8 @@ module.exports.start = callback => {
170
subject: true,
171
mailbox: true,
172
mimeTree: true,
173
- idate: true
+ idate: true,
174
+ verificationResults: true
175
}
176
177
);
@@ -213,6 +214,10 @@ module.exports.start = callback => {
213
214
data.messageId = messageData.msgid;
215
data.subject = messageData.subject;
216
data.date = messageData.idate.toISOString();
217
+
218
+ if (messageData.verificationResults) {
219
+ data.verificationResults = messageData.verificationResults;
220
+ }
221
222
223
for (let webhook of webhooks) {
0 commit comments