diff --git a/mbuni/ChangeLog b/mbuni/ChangeLog index d43acf4..c3eed55 100644 --- a/mbuni/ChangeLog +++ b/mbuni/ChangeLog @@ -1,3 +1,5 @@ +2009-02-24 P. A. Bagyenda + * Pass MM7/SOAP LinkedID to service url in mmsbox 2009-02-16 P. A. Bagyenda * Improved pgsql queue module performance * MM1 queue changes - expire message even if fetched at least once diff --git a/mbuni/mmsbox/mmsbox.c b/mbuni/mmsbox/mmsbox.c index 169a595..f80ba5b 100644 --- a/mbuni/mmsbox/mmsbox.c +++ b/mbuni/mmsbox/mmsbox.c @@ -343,6 +343,8 @@ static int fetch_serviceurl(MmsEnvelope *e, http_header_add(rh, "X-Mbuni-Message-ID", octstr_get_cstr(e->msgId)); if (e->fromproxy) http_header_add(rh, "X-Mbuni-MMSC-ID", octstr_get_cstr(e->fromproxy)); + if (e->token) + http_header_add(rh, "X-Mbuni-LinkedID", octstr_get_cstr(e->token)); if (e->from) { Octstr *xfrom = octstr_duplicate(e->from);