From 41662784f650545963ccc6412751cdd1382b3e50 Mon Sep 17 00:00:00 2001 From: Stefan Becker Date: Sat, 30 Oct 2010 22:01:05 +0300 Subject: [PATCH] add "603 Decline" response to undelivered message handling --- src/core/sipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/sipe.c b/src/core/sipe.c index bb0b5367..29eb4775 100644 --- a/src/core/sipe.c +++ b/src/core/sipe.c @@ -2997,7 +2997,7 @@ sipe_present_message_undelivered_err(struct sipe_core_private *sipe_private, label = _("Your message or invitation was not delivered, possibly because it contains a hyperlink or other content that the system administrator has blocked."); g_free(msg); msg = NULL; - } else if (sip_error == 503 || sip_error == 500 || sip_error == 504) { + } else if (sip_error == 500 || sip_error == 503 || sip_error == 504 || sip_error == 603) { label = _("This message was not delivered to %s because the service is not available"); } else if (sip_error == 486) { /* Busy Here */ label = _("This message was not delivered to %s because one or more recipients do not want to be disturbed"); -- 2.11.4.GIT