mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-09 23:11:57 +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');
|
this.mail_removeRowClass(messages,'unseen');
|
||||||
// reduce counter without server roundtrip
|
// reduce counter without server roundtrip
|
||||||
this.mail_reduceCounterWithoutServerRoundtrip();
|
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 = [
|
var buttons = [
|
||||||
{text: this.egw.lang("Yes"), id: "mdnsent"},
|
{text: this.egw.lang("Yes"), id: "mdnsent"},
|
||||||
|
Loading…
Reference in New Issue
Block a user