hi
i m using default ser config and mysql db/tables ..no modification
whatsoever
what i want is how can we disable/expire sip accounts..say for example i
have a user A and i want to enable his sip account based on hrs/months etc
how to go abt it? what all changes do i need to make?
regards,
Madan
Hello!
I have found the db_mode option in the userloc module, which controls
updates in the location table. But how are the lookups handled in ser?
If a user location will be requested by lookup("location"), will this query
the backend database or only the RAM. Is this lookup behaviour also
configurable (how?)?
I'm thinking about a configuration with 2 ser proxies and one database
backend. If the lookup only queries the cached location table, I would have
to froward the registrations between the two proxies via t_replicate. But
wouldn't this cause both proxies to update the database resulting in two
entries in the location table for each registration?
regards,
Klaus
hi
why do i get this error while web provisioning l
sorry -- cannot open fifo
relevant part of my config.php
$this->web_contact="sip:xyqw@sip.net4india.com";
//address of pseudo sender
$this->fifo_server="/tmp/";
//path to fifo server
$this->reply_fifo_filename="ser_fifo_".rand();
$this->reply_fifo_path="/tmp/".$this->reply_fifo_filename;
i would appreciate any help
regards,
Madan
I don't know if this is a bug.
Whenever SER encounters an error in the ser.cfg file, it restarts the X
server (or KDE. I might be confused but what I know is that it logges me
out).
Is there any way of overcoming this problem. Because if I have some other
jobs that I am doing, it closes everything and I have to relogin.
Thanks,
__________________________________
NZEYIMANA Emery Fabrice
NEFA Computing Services, Inc.
P.O. Box 5078 Kigali
Office Phone: +250-51 11 06
Office Fax: +250-50 15 19
Mobile: +250-08517768
Email: dg(a)nefacomp.net
http://www.nefacomp.net/
Hi,
I tried to use the pa modules to process SUBSCRIBE request from SIP user.
However, the following error message was returned when the pa module tried
to send 200 OK response:
0(19584) ERROR: t_reply: cannot send a t_reply to a message for which no
T-state has been established
0(19584) send_reply(): Error while sending 200 OK
Looks like the transaction state was missing while sending the response.
Please see the attached debug
and error message. I can't figure out the reason for that error, could
anybody help me out? Thanks!
BR,
Kevin
hi all
m newbie to ser but have found it to be good, i have done the installation
of ser with mysql
and now i want to debugg,trace etc using sipstack
but i m getting the following error after issuing the command - sipsak -s
sip:100@sip.xyz.com -vv
error: this FQDN or IP is not valid: sip
i would appreciate if anybody on list can point me to a right direction
regards,
Madan
Hello all,
I am wondering if Iptel is thinking about implementing an extension to
provide dynamic routing configuration obtained from an external device (a
database or other SIP server).
The extension could be a module that, given a specific criteria (specific
user/group, SIP method, time of day, subscribed service) would route SIP
messages (may be with modifications) to another SIP entity.
I would imagine that with the current implementation of SER, you could use
the existing location table store any triggers for a specific user,
something like this:
if (method==REGISTER) {
# Authenticate user....
save ("location");
get_profile("Service_Set_DB");
set_profile("location");
}
When any message from that user comes in, it would be possible to check
the profile in this way:
if (method==INVITE) {
check_profile("location");
# may be modify SIP message according to what came back from DB
t_relay();
}
So any changes on routing criteria could be held on a database (SQL, LDAP,
RADIUS, DIAMETER...) and changed there instead on the "route" clause. The
difficult part would probably be to establish the Service Set format and
modify the location or create another table to reflect those triggers for
that particular user. But I think the rest is not that far from now...
Is there anything like that in place or any plans to have it implemented?
Jaime