aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-05-09 17:38:30 +0800
committerMilan Crha <mcrha@redhat.com>2014-05-09 17:38:30 +0800
commitc7ddf191bf61930852a546be9865235528c9f2c6 (patch)
tree8908a9746869d9a88eb5b6b9ae53fccee33802e5 /modules
parent7a715fe2e279d925f7bf24b67cee4c7076e351d6 (diff)
downloadgsoc2013-evolution-c7ddf191bf61930852a546be9865235528c9f2c6.tar
gsoc2013-evolution-c7ddf191bf61930852a546be9865235528c9f2c6.tar.gz
gsoc2013-evolution-c7ddf191bf61930852a546be9865235528c9f2c6.tar.bz2
gsoc2013-evolution-c7ddf191bf61930852a546be9865235528c9f2c6.tar.lz
gsoc2013-evolution-c7ddf191bf61930852a546be9865235528c9f2c6.tar.xz
gsoc2013-evolution-c7ddf191bf61930852a546be9865235528c9f2c6.tar.zst
gsoc2013-evolution-c7ddf191bf61930852a546be9865235528c9f2c6.zip
Bug #691957 - MDN: Do not show "Sender has been notified..." message
Evolution doesn't have any capability to distinguish between truly sent read receipts and those cancelled, neither it stores anywhere the date of the read receipt send, thus showing to users an information about "Sender has been notified..." is only confusing to them.
Diffstat (limited to 'modules')
-rw-r--r--modules/mdn/evolution-mdn.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/mdn/evolution-mdn.c b/modules/mdn/evolution-mdn.c
index ed54205436..07a68e204a 100644
--- a/modules/mdn/evolution-mdn.c
+++ b/modules/mdn/evolution-mdn.c
@@ -485,12 +485,8 @@ mdn_message_loaded_cb (EMailReader *reader,
if (info == NULL)
goto exit;
- if (camel_message_info_user_flag (info, MDN_USER_FLAG)) {
- alert = e_alert_new ("mdn:sender-notified", NULL);
- mdn_submit_alert (mdn, reader, alert);
- g_object_unref (alert);
+ if (camel_message_info_user_flag (info, MDN_USER_FLAG))
goto exit;
- }
notify_to = mdn_get_notify_to (message);
if (notify_to == NULL)