Hi.
I think there is another email address I would use for this kinds of question. If so, much appreciate if someone could let me know.
Here is my question.
I have created a module that will lookup the database and determine if I should forward, redirect, or reject the request.
Since there is no switch statement in the script, I am wondering if I would save the "action" into a static variable and export a function to check and determine the action.
I know the above could be done and it should be ok as we do a fork - should duplicate the memory as well.
I would much appreciate if someone could give me a YES or NO answer or any idea how this is done.
Many thanks.
-----Original Message----- From: serusers-bounces@iptel.org [mailto:serusers-bounces@lists.iptel.org] On Behalf Of Jiri Kuthan Sent: June 19, 2004 2:01 PM To: Steve Blair; serusers@lists.iptel.org Subject: Re: [Serusers] CC-Diversion
This may help: http://www.iptel.org/ser/doc/seruser/seruser.html#AEN1018
-jiri
At 04:09 PM 6/17/2004, Steve Blair wrote:
Hello:
Can anyone speak to how the CC-Diversion field is used by Cisco gateways? It is my understanding that adding this header field in SER will result in the Cisco gateway setting the calling party id to the value in the CC-Diversion header. Is this correct?
I'm asking because we have an Octel 350 voice mail system that I would like to use for mailbox for IP phone users. The 350 expects a physical SMDI circuit for the call signaling path and a different circuit for the message body path. It would be great to allow the SIP signaling exiting our IP cloud through a Cisco gateway to be able to tell the Octel system to which subscriber mailbox the message should be delivered.
Thanks,Steve
--
ISC Network Engineering The University of Pennsylvania 3401 Walnut Street, Suite 221A Philadelphia, PA 19104
voice: 215-573-8396 215-746-7903
fax: 215-898-9348
sip:blairs@upenn.edu
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- Jiri Kuthan http://iptel.org/~jiri/
_______________________________________________ Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
You can use a cpl to each subscriber. Then it can forward, redirect or reject the request according to the cpl script, which is a much flexible solution.
Richard
--- Joseph Cheung Joseph.Cheung2@TELUS.COM wrote:
Hi.
I think there is another email address I would use for this kinds of question. If so, much appreciate if someone could let me know.
Here is my question.
I have created a module that will lookup the database and determine if I should forward, redirect, or reject the request.
Since there is no switch statement in the script, I am wondering if I would save the "action" into a static variable and export a function to check and determine the action.
I know the above could be done and it should be ok as we do a fork - should duplicate the memory as well.
I would much appreciate if someone could give me a YES or NO answer or any idea how this is done.
Many thanks.
-----Original Message----- From: serusers-bounces@lists.iptel.org [mailto:serusers-bounces@lists.iptel.org] On Behalf Of Jiri Kuthan Sent: June 19, 2004 2:01 PM To: Steve Blair; serusers@lists.iptel.org Subject: Re: [Serusers] CC-Diversion
This may help:
http://www.iptel.org/ser/doc/seruser/seruser.html#AEN1018
-jiri
At 04:09 PM 6/17/2004, Steve Blair wrote:
Hello:
Can anyone speak to how the CC-Diversion field
is used
by Cisco gateways? It is my understanding that
adding this header
field in SER will result in the Cisco gateway
setting the calling party
id to the value in the CC-Diversion header. Is this
correct?
I'm asking because we have an Octel 350 voice
mail system that
I would like to use for mailbox for IP phone users.
The 350 expects
a physical SMDI circuit for the call signaling path
and a different
circuit for the message body path. It would be
great to allow the
SIP signaling exiting our IP cloud through a Cisco
gateway to be
able to tell the Octel system to which subscriber
mailbox the message
should be delivered.
Thanks,Steve
--
ISC Network Engineering The University of Pennsylvania 3401 Walnut Street, Suite 221A Philadelphia, PA 19104
voice: 215-573-8396 215-746-7903
fax: 215-898-9348
sip:blairs@upenn.edu
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- Jiri Kuthan http://iptel.org/~jiri/
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
__________________________________ Do you Yahoo!? Vote for the stars of Yahoo!'s next ad campaign! http://advision.webevents.yahoo.com/yahoo/votelifeengine/
On Jul 19, 2004 at 21:35, Joseph Cheung Joseph.Cheung2@TELUS.COM wrote:
Hi.
I think there is another email address I would use for this kinds of question. If so, much appreciate if someone could let me know.
serdev@lists.iptel.org
Here is my question.
I have created a module that will lookup the database and determine if I should forward, redirect, or reject the request.
Since there is no switch statement in the script, I am wondering if I would save the "action" into a static variable and export a function to check and determine the action.
I know the above could be done and it should be ok as we do a fork - should duplicate the memory as well.
I would much appreciate if someone could give me a YES or NO answer or any idea how this is done.
Yes. :-) To see if you don't use a previously saved value, you can check against the message id (which is unique per process). e.g.:
/* set var */ saved_id=msg->id; saved_value= ...;
/* check val */
if (saved_id==msg_id){ return f(saved_value); }else{ /* no value was saved for this message, use the default one */ return f(default_value); }
Andrei