mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-03 03:49:33 +01:00
fixed every mail seems to request a delivery notification (caused by dataElem.data.dispositionnotificationto === null)
This commit is contained in:
parent
756e5c1732
commit
33b93e0665
@ -650,7 +650,8 @@ app.classes.mail = AppJS.extend(
|
||||
this.mail_removeRowClass(messages,'unseen');
|
||||
// reduce counter without server roundtrip
|
||||
this.mail_reduceCounterWithoutServerRoundtrip();
|
||||
if (typeof dataElem.data.dispositionnotificationto != 'undefined' && typeof dataElem.data.flags.mdnsent == 'undefined' && typeof dataElem.data.flags.mdnnotsent == 'undefined')
|
||||
if (typeof dataElem.data.dispositionnotificationto != 'undefined' && dataElem.data.dispositionnotificationto &&
|
||||
typeof dataElem.data.flags.mdnsent == 'undefined' && typeof dataElem.data.flags.mdnnotsent == 'undefined')
|
||||
{
|
||||
var buttons = [
|
||||
{text: this.egw.lang("Yes"), id: "mdnsent"},
|
||||
|
Loading…
Reference in New Issue
Block a user