Previous Up Next

11.4  Matching

   1 service matching {
       processing {
         dialog {
           response incoming INVITE() {      
   5         if (requestURI match ".*@phoenix\.labri\.fr") {
               return forward 'sip:phoenix-contact@enseirb.fr';
             }
             else {
               return forward;
  10         }
           }
         }
       }
     }

Previous Up Next