block sms-service response to bearerbox

2013-01-15 Thread Brian McCavour
Hi, I just configured MO routing for the first time (using a http smsc and 2 smsboxes) I am wonderig if there is a way to prevent responses from sms-service from being sent back through the bearerbox. Basically I am seeing (not sure about 1-2 of the ack orders but in general...): 1 - request to

RE: block sms-service response to bearerbox

2013-01-15 Thread Rene Kluwen
@kannel.org Subject: block sms-service response to bearerbox Hi, I just configured MO routing for the first time (using a http smsc and 2 smsboxes) I am wonderig if there is a way to prevent responses from sms-service from being sent back through the bearerbox. Basically I am seeing (not sure

Re: block sms-service response to bearerbox

2013-01-15 Thread Brian McCavour
org Sent: Tuesday, January 15, 2013 3:39:28 PM Subject: RE: block sms-service response to bearerbox If you send an empty response in step 6, you can prevent Kannel from sending a response sms by setting up   omit-empty = true in group = sms-service.   From:users-boun...@kannel.org [mailto:users-bo

Re: block sms-service response to bearerbox

2013-01-15 Thread Juan Luis Gómez Correa
Try with max-messages=0 From: Brian McCavour Reply-To: Brian McCavour Date: Tuesday, January 15, 2013 3:52 PM To: Rene Kluwen , "users@kannel.org" Subject: Re: block sms-service response to bearerbox That's what I tried first, but I then get a msg sent to bearerbox

Re: block sms-service response to bearerbox

2013-01-15 Thread Brian McCavour
    if (trans != NULL && urltrans_omit_empty(trans))     return 0;     else     msg->sms.msgdata = octstr_duplicate(reply_emptymessage);     } From: Brian McCavour To: Rene Kluwen ; "users@kannel.org" Sent: Tuesday, Janua

Re: block sms-service response to bearerbox

2013-01-15 Thread Brian McCavour
rg" Sent: Tuesday, January 15, 2013 3:54:56 PM Subject: Re: block sms-service response to bearerbox Try with  max-messages=0 From: Brian McCavour Reply-To: Brian McCavour Date: Tuesday, January 15, 2013 3:52 PM To: Rene Kluwen , "users@kannel.org" Subject: Re: bloc

Re: block sms-service response to bearerbox

2013-01-15 Thread Brian McCavour
Tuesday, January 15, 2013 4:08:08 PM Subject: Re: block sms-service response to bearerbox Ah clever, that worked. I'll still need to find a way to make omit-empty work though, for the case where sometimes its needed and sometimes not. Thanks a lot guys. __