[Serusers] error running ser for second instances

Klaus Darilion klaus.mailinglists at pernau.at
Thu May 13 12:25:10 CEST 2004


Some time ago, the syntax of
  if (len_gt( max_len )) {
has changed in ser.

Try:
if ( msg:len > max_len ) {
		sl_send_reply("513", "Message too big");

klasu

wiggler wrote:
> hi all,
> 
> while im trying to run 2 ser instances for voicemail, when i try to run ser with voicemail config, i got an error on the logs:
> 
> May 13 10:08:19 siptel ser: parse error (50,14-21): syntax error
> May 13 10:08:19 siptel ser: parse error (50,22-23): bad arguments
> 
> this error falls on sl_send_reply("513", "Message too big"); on sanity check.
> 
> here is my complete voicemail config.
> 
> #
> # $Id: voicemail.cfg,v 1.5 2004/01/14 18:23:50 rco Exp $
> #
> # this script is configured for use as voicemail UAS; it processes
> # INVITEs and BYEs and asks SEMS to record media via "vm"; in this
> # script, all record-routing and other constructs known from proxy
> # scripts are not present  -- it is a simple UAS
> #
> 
> # ----------- global configuration parameters ------------------------
> 
> #debug=                 # debug level (cmd line: -dddddddddd)
> #fork=no
> #log_stderror=yes       # (cmd line: -E)
> 
> 
> check_via=no            # (cmd. line: -v)
> dns=no                  # (cmd. line: -r)
> rev_dns=no              # (cmd. line: -R)
> port=5090
> children=4
> fifo="/tmp/vm_ser_fifo"
> fifo_mode=438
> 
> # ------------------ module loading ----------------------------------
> 
> loadmodule "/usr/local/lib/ser/modules/sl.so"
> loadmodule "/usr/local/lib/ser/modules/tm.so"
> loadmodule "/usr/local/lib/ser/modules/maxfwd.so"
> loadmodule "/usr/local/lib/ser/modules/mysql.so"
> loadmodule "/usr/local/lib/ser/modules/vm.so"
> 
> # ----------------- setting module-specific parameters ---------------
> 
> modparam("voicemail", "db_url","mysql://ser:heslo@localhost/ser")
> 
> # -------------------------  request routing logic -------------------
> 
> # main routing logic
> 
> route{
> 
> 
>         # initial sanity checks -- messages with
>         # max_forwars==0, or excessively long requests
>         if (!mf_process_maxfwd_header("10")) {
>                 sl_send_reply("483","Too Many Hops");
>                 break;
>         };
>         if (len_gt( max_len )) {
>                 sl_send_reply("513", "Message too big");
>                 break;
>         };
> 
>         if (!uri==myself) {
>                 sl_send_reply("404", "not reponsible for host in r-uri");
>                 break;
>         };
> 
> 
>         # Voicemail specific configuration - begin
> 
>         if(method=="ACK" || method=="INVITE" || method=="BYE"){
> 
>                 if (!t_newtran()) {
>                         log("could not create new transaction\n");
>                         sl_send_reply("500","could not create new transaction");
>                         break;
>                 };
> 
>                 t_reply("100","Trying -- just wait a minute !");
>                 if(method=="INVITE"){
>                         log("**************** vm start - begin ******************\n");
>                         if(!vm("/tmp/am_fifo","voicemail")){
>                                 log("could not contact the answer machine\n");
>                                 t_reply("500","could not contact the answer machine");
>                         };
>                         log("**************** vm start - end ******************\n");
>                 } else if(method=="BYE"){
>                         log("**************** vm end - begin ******************\n");
>                         if(!vm("/tmp/am_fifo","bye")){
>                                 log("could not contact the answer machine\n");
>                                 t_reply("500","could not contact the answer machine");
>                         };
>                         log("**************** vm end - end ******************\n");
>                 };
>                 break;
>         };
>         if (method=="CANCEL") {
>                 sl_send_reply("200", "cancels are junked here");
>                 break;
>         };
>         sl_send_reply("501", "method not understood here");
> }
> 
> 
> 
> 
> 
> --
> www.bembang.com
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> Serusers mailing list
> serusers at lists.iptel.org
> http://lists.iptel.org/mailman/listinfo/serusers




More information about the sr-users mailing list