Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
Thank you for any help.
I had this problem too, and could not find rational explanation because I was not loading any modules prior to 'tm' that had 'tm' as an obvious dependency.
Try loading 'tm' as the first module, before any others. It fixed the problem for me.
On 01/27/2010 03:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
Thank you for any help.
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
Daniel, I already discovered about milisec. Thank you.
What about error:
loadmodule "db_mysql.so"
loadmodule "mi_fifo.so"
loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "rr.so"
loadmodule "pv.so"
loadmodule "textops.so"
loadmodule "siputils.so"
loadmodule "xlog.so"
loadmodule "acc.so"
loadmodule "avpops.so"
loadmodule "siptrace.so"
loadmodule "dialplan.so"
loadmodule "lcr.so"
loadmodule "sqlops.so"
loadmodule "carrierroute.so"
loadmodule "drouting.so"
loadmodule "kex.so"
From: Daniel-Constantin Mierla [mailto:miconda@gmail.com] Sent: Wednesday, January 27, 2010 1:46 PM To: Denis Putyato Cc: users@lists.kamailio.org Subject: Re: [Kamailio-Users] TM module
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
sl tries to bind to tm for send_reply() function.
The function can detect whether transaction was created and uses t_relply() in that case instead of sl_send_reply() (of course, if sl can bind to tm module). sl will print a warning. Probably the message in tm should not be printed as error anymore and let the module that tries to bind to decide whether is error if it must bine, or warning if just disables some features.
Cheers, Daniel
On 1/27/10 11:57 AM, Denis Putyato wrote:
Daniel, I already discovered about milisec. Thank you.
What about error:
loadmodule "db_mysql.so"
loadmodule "mi_fifo.so"
loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "rr.so"
loadmodule "pv.so"
loadmodule "textops.so"
loadmodule "siputils.so"
loadmodule "xlog.so"
loadmodule "acc.so"
loadmodule "avpops.so"
loadmodule "siptrace.so"
loadmodule "dialplan.so"
loadmodule "lcr.so"
loadmodule "sqlops.so"
loadmodule "carrierroute.so"
loadmodule "drouting.so"
loadmodule "kex.so"
*From:* Daniel-Constantin Mierla [mailto:miconda@gmail.com] *Sent:* Wednesday, January 27, 2010 1:46 PM *To:* Denis Putyato *Cc:* users@lists.kamailio.org *Subject:* Re: [Kamailio-Users] TM module
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
-- Daniel-Constantin Mierla *http://www.asipto.com/
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
Daniel thank you very much.
In documentation sl stays with "No dependencies on other Kamailio modules"
From: Daniel-Constantin Mierla [mailto:miconda@gmail.com] Sent: Wednesday, January 27, 2010 2:04 PM To: Denis Putyato Cc: users@lists.kamailio.org Subject: Re: [Kamailio-Users] TM module
sl tries to bind to tm for send_reply() function.
The function can detect whether transaction was created and uses t_relply() in that case instead of sl_send_reply() (of course, if sl can bind to tm module). sl will print a warning. Probably the message in tm should not be printed as error anymore and let the module that tries to bind to decide whether is error if it must bine, or warning if just disables some features.
Cheers, Daniel
On 1/27/10 11:57 AM, Denis Putyato wrote:
Daniel, I already discovered about milisec. Thank you.
What about error:
loadmodule "db_mysql.so"
loadmodule "mi_fifo.so"
loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "rr.so"
loadmodule "pv.so"
loadmodule "textops.so"
loadmodule "siputils.so"
loadmodule "xlog.so"
loadmodule "acc.so"
loadmodule "avpops.so"
loadmodule "siptrace.so"
loadmodule "dialplan.so"
loadmodule "lcr.so"
loadmodule "sqlops.so"
loadmodule "carrierroute.so"
loadmodule "drouting.so"
loadmodule "kex.so"
From: Daniel-Constantin Mierla [mailto:miconda@gmail.com] Sent: Wednesday, January 27, 2010 1:46 PM To: Denis Putyato Cc: users@lists.kamailio.org Subject: Re: [Kamailio-Users] TM module
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
On 1/27/10 12:13 PM, Denis Putyato wrote:
Daniel thank you very much.
In documentation sl stays with "No dependencies on other Kamailio modules"
the doc needs to be updated. As said, in this particular case is not an error just disables a feature.
I updated kamailio_3.0 branch to register mi commands from drouting module, please pull the git and try again. Let me know if works now.
Thanks, Daniel
*From:* Daniel-Constantin Mierla [mailto:miconda@gmail.com] *Sent:* Wednesday, January 27, 2010 2:04 PM *To:* Denis Putyato *Cc:* users@lists.kamailio.org *Subject:* Re: [Kamailio-Users] TM module
sl tries to bind to tm for send_reply() function.
The function can detect whether transaction was created and uses t_relply() in that case instead of sl_send_reply() (of course, if sl can bind to tm module). sl will print a warning. Probably the message in tm should not be printed as error anymore and let the module that tries to bind to decide whether is error if it must bine, or warning if just disables some features.
Cheers, Daniel
On 1/27/10 11:57 AM, Denis Putyato wrote:
Daniel, I already discovered about milisec. Thank you.
What about error:
loadmodule "db_mysql.so"
loadmodule "mi_fifo.so"
loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "rr.so"
loadmodule "pv.so"
loadmodule "textops.so"
loadmodule "siputils.so"
loadmodule "xlog.so"
loadmodule "acc.so"
loadmodule "avpops.so"
loadmodule "siptrace.so"
loadmodule "dialplan.so"
loadmodule "lcr.so"
loadmodule "sqlops.so"
loadmodule "carrierroute.so"
loadmodule "drouting.so"
loadmodule "kex.so"
*From:* Daniel-Constantin Mierla [mailto:miconda@gmail.com] *Sent:* Wednesday, January 27, 2010 1:46 PM *To:* Denis Putyato *Cc:* users@lists.kamailio.org mailto:users@lists.kamailio.org *Subject:* Re: [Kamailio-Users] TM module
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
-- Daniel-Constantin Mierla *http://www.asipto.com/
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org mailto:Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
-- Daniel-Constantin Mierla *http://www.asipto.com/
Daniel thank you, now dr_reload working.
From: Daniel-Constantin Mierla [mailto:miconda@gmail.com] Sent: Wednesday, January 27, 2010 2:57 PM To: Denis Putyato Cc: users@lists.kamailio.org Subject: Re: [Kamailio-Users] TM module
On 1/27/10 12:13 PM, Denis Putyato wrote:
Daniel thank you very much.
In documentation sl stays with "No dependencies on other Kamailio modules"
the doc needs to be updated. As said, in this particular case is not an error just disables a feature.
I updated kamailio_3.0 branch to register mi commands from drouting module, please pull the git and try again. Let me know if works now.
Thanks, Daniel
From: Daniel-Constantin Mierla [mailto:miconda@gmail.com] Sent: Wednesday, January 27, 2010 2:04 PM To: Denis Putyato Cc: users@lists.kamailio.org Subject: Re: [Kamailio-Users] TM module
sl tries to bind to tm for send_reply() function.
The function can detect whether transaction was created and uses t_relply() in that case instead of sl_send_reply() (of course, if sl can bind to tm module). sl will print a warning. Probably the message in tm should not be printed as error anymore and let the module that tries to bind to decide whether is error if it must bine, or warning if just disables some features.
Cheers, Daniel
On 1/27/10 11:57 AM, Denis Putyato wrote:
Daniel, I already discovered about milisec. Thank you.
What about error:
loadmodule "db_mysql.so"
loadmodule "mi_fifo.so"
loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "rr.so"
loadmodule "pv.so"
loadmodule "textops.so"
loadmodule "siputils.so"
loadmodule "xlog.so"
loadmodule "acc.so"
loadmodule "avpops.so"
loadmodule "siptrace.so"
loadmodule "dialplan.so"
loadmodule "lcr.so"
loadmodule "sqlops.so"
loadmodule "carrierroute.so"
loadmodule "drouting.so"
loadmodule "kex.so"
From: Daniel-Constantin Mierla [mailto:miconda@gmail.com] Sent: Wednesday, January 27, 2010 1:46 PM To: Denis Putyato Cc: users@lists.kamailio.org Subject: Re: [Kamailio-Users] TM module
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
On 1/28/10 8:11 AM, Denis Putyato wrote:
Daniel thank you, now dr_reload working.
welcome, thanks for troubleshooting.
Daniel
*From:* Daniel-Constantin Mierla [mailto:miconda@gmail.com] *Sent:* Wednesday, January 27, 2010 2:57 PM *To:* Denis Putyato *Cc:* users@lists.kamailio.org *Subject:* Re: [Kamailio-Users] TM module
On 1/27/10 12:13 PM, Denis Putyato wrote:
Daniel thank you very much.
In documentation sl stays with "No dependencies on other Kamailio modules"
the doc needs to be updated. As said, in this particular case is not an error just disables a feature.
I updated kamailio_3.0 branch to register mi commands from drouting module, please pull the git and try again. Let me know if works now.
Thanks, Daniel
*From:* Daniel-Constantin Mierla [mailto:miconda@gmail.com] *Sent:* Wednesday, January 27, 2010 2:04 PM *To:* Denis Putyato *Cc:* users@lists.kamailio.org mailto:users@lists.kamailio.org *Subject:* Re: [Kamailio-Users] TM module
sl tries to bind to tm for send_reply() function.
The function can detect whether transaction was created and uses t_relply() in that case instead of sl_send_reply() (of course, if sl can bind to tm module). sl will print a warning. Probably the message in tm should not be printed as error anymore and let the module that tries to bind to decide whether is error if it must bine, or warning if just disables some features.
Cheers, Daniel
On 1/27/10 11:57 AM, Denis Putyato wrote:
Daniel, I already discovered about milisec. Thank you.
What about error:
loadmodule "db_mysql.so"
loadmodule "mi_fifo.so"
loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "rr.so"
loadmodule "pv.so"
loadmodule "textops.so"
loadmodule "siputils.so"
loadmodule "xlog.so"
loadmodule "acc.so"
loadmodule "avpops.so"
loadmodule "siptrace.so"
loadmodule "dialplan.so"
loadmodule "lcr.so"
loadmodule "sqlops.so"
loadmodule "carrierroute.so"
loadmodule "drouting.so"
loadmodule "kex.so"
*From:* Daniel-Constantin Mierla [mailto:miconda@gmail.com] *Sent:* Wednesday, January 27, 2010 1:46 PM *To:* Denis Putyato *Cc:* users@lists.kamailio.org mailto:users@lists.kamailio.org *Subject:* Re: [Kamailio-Users] TM module
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
-- Daniel-Constantin Mierla *http://www.asipto.com/
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org mailto:Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
-- Daniel-Constantin Mierla *http://www.asipto.com/
-- Daniel-Constantin Mierla *http://www.asipto.com/
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
Daniel,
This is the issue to which I was referring - the documentation does not say that 'sl' has 'tm' as a dependency.
On 01/27/2010 06:03 AM, Daniel-Constantin Mierla wrote:
sl tries to bind to tm for send_reply() function.
The function can detect whether transaction was created and uses t_relply() in that case instead of sl_send_reply() (of course, if sl can bind to tm module). sl will print a warning. Probably the message in tm should not be printed as error anymore and let the module that tries to bind to decide whether is error if it must bine, or warning if just disables some features.
Cheers, Daniel
On 1/27/10 11:57 AM, Denis Putyato wrote:
Daniel, I already discovered about milisec. Thank you.
What about error:
loadmodule "db_mysql.so"
loadmodule "mi_fifo.so"
loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "rr.so"
loadmodule "pv.so"
loadmodule "textops.so"
loadmodule "siputils.so"
loadmodule "xlog.so"
loadmodule "acc.so"
loadmodule "avpops.so"
loadmodule "siptrace.so"
loadmodule "dialplan.so"
loadmodule "lcr.so"
loadmodule "sqlops.so"
loadmodule "carrierroute.so"
loadmodule "drouting.so"
loadmodule "kex.so"
*From:* Daniel-Constantin Mierla [mailto:miconda@gmail.com] *Sent:* Wednesday, January 27, 2010 1:46 PM *To:* Denis Putyato *Cc:* users@lists.kamailio.org *Subject:* Re: [Kamailio-Users] TM module
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
-- Daniel-Constantin Mierla *http://www.asipto.com/
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
-- Daniel-Constantin Mierla *http://www.asipto.com/
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
On 1/27/10 8:55 PM, Alex Balashov wrote:
Daniel,
This is the issue to which I was referring - the documentation does not say that 'sl' has 'tm' as a dependency.
I think Henning fixed that today. looking forward for your contributions to other docs as well.
Cheers, Daniel
On 01/27/2010 06:03 AM, Daniel-Constantin Mierla wrote:
sl tries to bind to tm for send_reply() function.
The function can detect whether transaction was created and uses t_relply() in that case instead of sl_send_reply() (of course, if sl can bind to tm module). sl will print a warning. Probably the message in tm should not be printed as error anymore and let the module that tries to bind to decide whether is error if it must bine, or warning if just disables some features.
Cheers, Daniel
On 1/27/10 11:57 AM, Denis Putyato wrote:
Daniel, I already discovered about milisec. Thank you.
What about error:
loadmodule "db_mysql.so"
loadmodule "mi_fifo.so"
loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "rr.so"
loadmodule "pv.so"
loadmodule "textops.so"
loadmodule "siputils.so"
loadmodule "xlog.so"
loadmodule "acc.so"
loadmodule "avpops.so"
loadmodule "siptrace.so"
loadmodule "dialplan.so"
loadmodule "lcr.so"
loadmodule "sqlops.so"
loadmodule "carrierroute.so"
loadmodule "drouting.so"
loadmodule "kex.so"
*From:* Daniel-Constantin Mierla [mailto:miconda@gmail.com] *Sent:* Wednesday, January 27, 2010 1:46 PM *To:* Denis Putyato *Cc:* users@lists.kamailio.org *Subject:* Re: [Kamailio-Users] TM module
Hello,
On 1/27/10 9:37 AM, Denis Putyato wrote:
Hello everybody!
ERROR: tm [tm_load.c:47]: tm:load_tm: Module not initialized yet, make sure that all modules that need tm module are loaded after tm in the configuration file
Kamailio 3.0 was installed from GIT.
Kamailio starts success. But the error appears. I think because of this I have a problem with making a call through kamailio. Calls were failed because kamailio send CANCEL or 487 code immediately after send INVITE to some outgoing gateways (after t_relay() has been made).
Is this really need load all modules for tm working properly? I read documentation and fount that almost all modules that need tm loaded do not need in my config.
do you have #!KAMAILIO line at the beginning of your config? In 3.0.0 tm timeouts are in miliseconds, de directive I mentioned checks if you have it too low, it increases it accordingly (case of updating the config without paying attention to timeout value changes).
If you list the modules that you load, I can spot which one depends on tm and is loaded before.
Cheers, Daniel
-- Daniel-Constantin Mierla *http://www.asipto.com/
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
-- Daniel-Constantin Mierla *http://www.asipto.com/
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users