Re: [OpenSIPS-Users] OpenSIPS - Log Facility partial working

2020-07-08 Thread Valli A. Vallimamod - SIP Solutions
Hi, You need to put the following in your rsyslog.conf: LOCAL1.* /var/log/opensips.log & stop Hope this helps. Best Regards, -- Valli A. Vallimamod SIP Solutions vma@sip.solutions linkedin.com/in/vallimamod . > On 8 Jul 2020, at 02:18, Sharad Kumar via Users

Re: [OpenSIPS-Users] fr-timer

2020-03-18 Thread SIP & IPBX Expert - Dust Mobile
Please discard this mail (used wrong e mail address) On 15/03/2020 09:17, SIP & IPBX Expert - Dust Mobile wrote: > How can I catch in the script that fr-timer has expired ? > > I need to be able to see this expiry as I would like to failover on t

[OpenSIPS-Users] fr-timer

2020-03-18 Thread SIP & IPBX Expert - Dust Mobile
How can I catch in the script that fr-timer has expired ? I need to be able to see this expiry as I would like to failover on this. BR, ___ Users mailing list Users@lists.opensips.org http://lists.opensips.org/cgi-bin/mailman/listinfo/users

[OpenSIPS-Users] lua_exec in local_route

2020-03-03 Thread SIP & IPBX Expert - Dust Mobile
Hello, when I use lua_exec in local_route, I have below error: Feb 21 10:31:26 hendrix opensips[26811]: Not starting opensips: invalid configuration file! Feb 21 10:31:26 hendrix opensips[26811]: Feb 21 10:31:26 [26823] Traceback (last included file at the bottom): Feb 21 10:31:26 hendrix opensip

Re: [OpenSIPS-Users] Migrating 1.11.11 to debian 9

2020-01-17 Thread Vallimamod Abdullah - SIP Solutions
Hi, Have you tried compiling with -fPIC flag as suggested in the error message? You may append it to CFLAGS and CXXFLAGS vars. Best Regards, -- Vallimamod Abdullah SIP Solutions vma@sip.solutions linkedin.com/in/vallimamod . > On 16 Jan 2020, at 15:43, Alain Bieuzent wrote: > &g

Re: [OpenSIPS-Users] Remove prefix from number

2011-09-02 Thread sip
Thanks Marco, Strip(4) remove first 4 characters from number. I want to remove prefix (AVP variables). Do you have any idea? >try with "strip(4) ;" > >http://www.opensips.org/Resources/DocsCoreFcn16#toc137 > >ciao >marco 2011/8/28 > Dear all, > > I try to remove prefix from phone number witho

[OpenSIPS-Users] Remove prefix from number

2011-08-28 Thread sip
Dear all, I try to remove prefix from phone number without success. $avp(prefix)="159#"; $avp(number)=$fU; avp_subst("$avp(number)/$avp(ret)/g", "/$avp(pref)//g"); How to do this? Best regards, Plamen ___ Users mailing list Users@lists.opensips.org

[OpenSIPS-Users] topology_hiding - opensips crashs

2011-08-25 Thread sip
Hello, When I use topology_hiding() opensips crashs. version: opensips 1.7.0-beta-notls (i386/linux) svnrevision: 2:8313 os: Centos Where is problem? best regards, Plamen Petkov ___ Users mailing list Users@lists.opensips.org http://lists.opensips.

[OpenSIPS-Users] topology_hiding without success

2011-08-20 Thread sip
Hello, I try to use "topology_hiding" without success. version: opensips 1.7.0-beta-notls (i386/linux) svnrevision: 2:8265 1. When I use topology_hiding() opensips crashs. Please see post from Sun, August 7, 2011 11:43 pm 2. When try to use B2B module I receive follow errors: . loadmodule "b

Re: [OpenSIPS-Users] Crash in topology_hiding

2011-08-08 Thread sip
Thanks Vlad, Hope I did it right: #0 0x00132e4b in insert_tmcb () from /usr/lib/opensips/modules/tm.so #1 0x001339ff in register_tmcb () from /usr/lib/opensips/modules/tm.so #2 0x0070bf42 in w_topology_hiding (req=0x81eef34) at dlg_tophiding.c:321 #3 0x0805612a in do_action () #4 0x0805a625

[OpenSIPS-Users] Crash in topology_hiding

2011-08-07 Thread sip
Hello, When I use topology_hiding() opensips crashs. Here is log: Aug 8 00:32:23 sbc /usr/sbin/opensips[27485]: DBG:dialog:dlg_add_leg_info: set leg 0 for 0xb616d8c8: tag= rcseq=<0> Aug 8 00:32:23 sbc /usr/sbin/opensips[27485]: DBG:dialog:link_dlg: ref dlg 0xb616d8c8 with 3 -> 3 Aug 8 00:32:23

[OpenSIPS-Users] OpenSIPS - "true" proxy mode

2011-08-05 Thread sip
Hi everyone, I am trying to understand is it possible to use OpenSIPS run in full proxy mode - in other words is it possible to avoid displaying the full call information in the SIP header when sending invite packet to a voip provider to terminate the call. I have done some tests and it seems SIP

[OpenSIPS-Users] Setup "To:" in INVITE

2011-08-04 Thread sip
P like this? "To: " Here is my Route and INVITE from OpenSips. route{ if (loose_route()) { t_relay(); exit; }; if (is_method("INVITE")) { rewriteuri("sip:580@SipProxy-B_IP"); record_route(); }

[OpenSIPS-Users] Perl module - moduleFunction

2011-08-04 Thread sip
Hello, I try function.pl from PERL samples of OpenSips v 1.7.0. I get follow messages: ERROR:core:moduleFunc: Module function 'sl_send_reply' is unsafe. Call is refused. ERROR:core:XS_OpenSER__Message_moduleFunction: calling module function 'sl_send_reply' failed. Missing loadmodule? Where is p