VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
ibc at aliax.net Guest
|
Posted: Sun Nov 23, 2008 6:12 am Post subject: [Freeswitch-users] Some questions about FS with external use |
|
|
Hi, I'm trying to configure FS as a simple and transparent B2BUA without local
users, but I have some issues:
- FS always adds "Remote-Party-Id" header. This header is a deprecated draft
(the standar way is "P-Asserted-Identity"). Anyway I want FS not adding this
header, how could I get it?
- When FS generates the INVITE in leg_b it replaces the original From domain
with its own domain/IP. How could I avoid it? (It's strange since I've
checked that sending a MESSAGE instead of INVITE the From domain remains the
original).
--
Iñaki Baz Castillo
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
ibc at aliax.net Guest
|
Posted: Sun Nov 23, 2008 6:24 am Post subject: [Freeswitch-users] Some questions about FS with external use |
|
|
El Domingo, 23 de Noviembre de 2008, Iñaki Baz Castillo escribió:
Quote: | - When FS generates the INVITE in leg_b it replaces the original From
domain with its own domain/IP. How could I avoid it? (It's strange since
I've checked that sending a MESSAGE instead of INVITE the From domain
remains the original).
|
I do the "bridge" app using a "gateway" in which I've set:
<param name="caller-id-in-from" value="true"/>
But it just keep the leg_a From username, not the domain.
--
Iñaki Baz Castillo
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
mike at jerris.com Guest
|
Posted: Sun Nov 23, 2008 9:12 am Post subject: [Freeswitch-users] Some questions about FS with external use |
|
|
We have never tried to make FreeSWITCH a transparent b2bua. It will
probably require a decent amount of c coding on your part to get it to
do so as a truly transparent b2bua.
Mike
On Nov 23, 2008, at 5:58 AM, Iñaki Baz Castillo wrote:
Quote: | Hi, I'm trying to configure FS as a simple and transparent B2BUA
without local
users, but I have some issues:
- FS always adds "Remote-Party-Id" header. This header is a
deprecated draft
(the standar way is "P-Asserted-Identity"). Anyway I want FS not
adding this
header, how could I get it?
- When FS generates the INVITE in leg_b it replaces the original
From domain
with its own domain/IP. How could I avoid it? (It's strange since I've
checked that sending a MESSAGE instead of INVITE the From domain
remains the
original).
--
Iñaki Baz Castillo
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
ibc at aliax.net Guest
|
Posted: Sun Nov 23, 2008 9:56 am Post subject: [Freeswitch-users] Some questions about FS with external use |
|
|
El Domingo, 23 de Noviembre de 2008, Michael Jerris escribió:
Quote: | We have never tried to make FreeSWITCH a transparent b2bua. It will
probably require a decent amount of c coding on your part to get it to
do so as a truly transparent b2bua.
|
Ok, I understand.
Anyway, is it possible to change the From domain during the dialplan? We can
read the inboud From domain but AFAIK setting it in realtime is not possible,
is it?
BTW: is not possible to avaoid FS sending RPID header?
Thanks a lot.
--
Iñaki Baz Castillo
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Sun Nov 23, 2008 8:33 pm Post subject: [Freeswitch-users] Some questions about FS with external use |
|
|
On Nov 23, 2008, at 7:52 AM, Iñaki Baz Castillo wrote:
Quote: | Anyway, is it possible to change the From domain during the
dialplan? We can
read the inboud From domain but AFAIK setting it in realtime is not
possible,
is it?
|
sip_invite_domain as per the previous email
Quote: |
BTW: is not possible to avaoid FS sending RPID header?
|
Not yet but patches welcome!
/b
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Mon Nov 24, 2008 8:21 am Post subject: [Freeswitch-users] Some questions about FS with external use |
|
|
This would catch what you want and send it out to the public internet.
<extension name="external_sip_uri" continue="true">
<condition field="source" expression="mod_sofia"/>
<condition field="${domain_exists(${sip_req_host})}"
expression="true">
<anti-action application="bridge" data="sofia/${use_profile}/$
{sip_to_uri}"/>
</condition>
</extension>
/b
On Nov 23, 2008, at 8:52 AM, Iñaki Baz Castillo wrote:
Quote: | El Domingo, 23 de Noviembre de 2008, Michael Jerris escribió:
Quote: | We have never tried to make FreeSWITCH a transparent b2bua. It will
probably require a decent amount of c coding on your part to get it
to
do so as a truly transparent b2bua.
|
Ok, I understand.
Anyway, is it possible to change the From domain during the
dialplan? We can
read the inboud From domain but AFAIK setting it in realtime is not
possible,
is it?
BTW: is not possible to avaoid FS sending RPID header?
Thanks a lot.
--
Iñaki Baz Castillo
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|