backup
[lcr.git] / apppbx.cpp
index 1d07900..15fa438 100644 (file)
@@ -42,8 +42,8 @@ EndpointAppPBX::EndpointAppPBX(class Endpoint *epoint) : EndpointApp(epoint)
        e_ext.rights = 4; /* international */
        e_ext.rxvol = e_ext.txvol = 256;
         e_state = EPOINT_STATE_IDLE;
-        e_terminal[0] = '\0';
-       e_terminal_interface[0] = '\0';
+        e_ext.number[0] = '\0';
+       e_extension_interface[0] = '\0';
         memset(&e_callerinfo, 0, sizeof(struct caller_info));
         memset(&e_dialinginfo, 0, sizeof(struct dialing_info));
         memset(&e_connectinfo, 0, sizeof(struct connect_info));
@@ -135,17 +135,148 @@ EndpointAppPBX::~EndpointAppPBX(void)
 }
 
 
+/*
+ * trace header for application
+ */
+void EndpointAppPBX::trace_header(char *name, int direction)
+{
+       char msgtext[sizeof(trace.name)];
+
+       SCPY(msgtext, name);
+
+       /* add direction */
+       if (direction)
+       {
+               if (p_m_ntmode)
+               {
+                       if (direction == DIRECTION_OUT)
+                               SCAT(msgtext, " N->U");
+                       else
+                               SCAT(msgtext, " N<-U");
+               } else
+               {
+                       if (direction == DIRECTION_OUT)
+                               SCAT(msgtext, " U->N");
+                       else
+                               SCAT(msgtext, " U<-N");
+               }
+       }
+
+       /* init trace with given values */
+       start_trace(0,
+                   NULL,
+                   nationalize(e_callerinfo.id, e_callerinfo.ntype),
+                   e_dialinginfo.number,
+                   direction,
+                   CATEGORY_AP,
+                   msgtext);
+}
+
+
 EPOINT_STATE_NAMES
 
 /* set new endpoint state
  */
 void EndpointAppPBX::new_state(int state)
 {
-       PDEBUG(DEBUG_EPOINT, "EPOINT(%d) new state %s --> %s\n", ea_endpoint->ep_serial, state_name[e_state], state_name[state]);
+       if (e_state != state)
+       {
+               trace_header("NEW STATE", DIRECTION_NONE);
+               add_trace("state", "old", "%s", state_name[e_state]);
+               add_trace("state", "new", "%s", state_name[state]);
+       }
        e_state = state;
 }
 
 
+/* screen caller id
+ * out==0: incomming caller id, out==1: outgoing caller id
+ */
+void EndpointAppPBX::screen(int out, char *id, int idsize, int *type, int *present)
+{
+       struct interface        *interface;
+
+       interface = interface_first;
+       while(interface)
+       {
+               if (!strcmp(e_callerinfo.interface, interface->name))
+               {
+                       break;
+               }
+               interface = interface->next;
+       }
+add logging
+       if (interface)
+       {
+               /* screen incoming caller id */
+               if (!out)
+               {
+                       /* check for MSN numbers, use first MSN if no match */
+                       msn1 = NULL;
+                       ifmsn = interface->ifmsn;
+                       while(ifmns)
+                       {
+                               if (!msn1)
+                                       msn1 = ifmns->msn;
+                               if (!strcmp(ifmns->mns, id))
+                               {
+                                       break;
+                               }
+                               ifmsn = ifmsn->next;
+                       }
+                       if (!ifmns && mns1) // not in list, first msn given
+                               UNCPY(id, msn1, idsize);
+                       id[idsize-1] = '\0';
+               }
+       
+               /* check screen list */
+               if (out)
+                       iscreen = interface->ifscreen_out;
+               else
+                       iscreen = interface->ifscreen_in;
+               while (ifscreen)
+               {
+                       if (ifcreen->match_type==-1 || ifscreen->match_type==*type)
+                       if (ifcreen->match_present==-1 || ifscreen->match_present==*present)
+                       {
+                               if (strchr(ifcreen->match_id,'%'))
+                               {
+                                       if (!strncmp(ifscreen->match_id, id, strchr(ifscreen->match_id,'%')-ifscreen->match_id))
+                                               break;
+                               } else
+                               {
+                                       if (!strcmp(ifscreen->match_id, id))
+                                               break;
+                               }
+                       }
+                       ifscreen = ifscreen->next;
+               }
+               if (ifscreen) // match
+               {
+                       if (ifscren->result_type != -1)
+                               *type = ifscreen->result_type;
+                       if (ifscren->result_present != -1)
+                               *present = ifscreen->result_present;
+                       if (strchr(ifscreen->match_id,'%'))
+                       {
+                               SCPY(suffix, strchr(ifscreen->match_id,'%') - ifscreen->match_id + id);
+                               UNCPY(id, ifscreen->result_id);
+                               id[idsize-1] = '\0';
+                               if (strchr(ifscreen->result_id,'%'))
+                               {
+                                       *strchr(ifscreen->result_id,'%') = '\0';
+                                       UNCAT(id, suffix, idsize);
+                                       id[idsize-1] = '\0';
+                               }
+                       } else
+                       {
+                               UNCPY(id, ifscreen->result_id, idsize);
+                               id[idsize-1] = '\0';
+                       }
+               }
+       }
+}
+
 /* release call and port (as specified)
  */
 void EndpointAppPBX::release(int release, int calllocation, int callcause, int portlocation, int portcause)
@@ -238,12 +369,12 @@ void EndpointAppPBX::release(int release, int calllocation, int callcause, int p
                        memcpy(&e_callbackinfo, &e_callerinfo, sizeof(e_callbackinfo));
                        memset(&e_dialinginfo, 0, sizeof(e_dialinginfo));
                        /* create dialing by callerinfo */
-                       if (e_terminal[0] && e_terminal_interface[0])
+                       if (e_ext.number[0] && e_extension_interface[0])
                        {
-                               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) preparing callback to internal: %s interface %s\n", ea_endpoint->ep_serial, e_terminal, e_terminal_interface);
+                               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) preparing callback to internal: %s interface %s\n", ea_endpoint->ep_serial, e_ext.number, e_extension_interface);
                                /* create callback to the current terminal */
-                               SCPY(e_dialinginfo.number, e_terminal);
-                               SCPY(e_dialinginfo.interfaces, e_terminal_interface);
+                               SCPY(e_dialinginfo.number, e_ext.number);
+                               SCPY(e_dialinginfo.interfaces, e_extension_interface);
                                e_dialinginfo.itype = INFO_ITYPE_ISDN_EXTENSION;
                                e_dialinginfo.ntype = INFO_NTYPE_UNKNOWN;
                        } else
@@ -279,8 +410,10 @@ void apply_callerid_restriction(int anon_ignore, int port_type, char *id, int *n
        if (*present != INFO_PRESENT_RESTRICTED)
                return;
 
-       /* external ports receive no restricted caller id */
-       if (port_type==PORT_TYPE_DSS1_TE_IN || port_type==PORT_TYPE_DSS1_TE_OUT)
+       /* only extensions are restricted */
+       if (!intern)
+               return;
+       if (!intern[0])
                return;
 
        /* if we enabled anonymouse ignore */
@@ -474,7 +607,7 @@ void EndpointAppPBX::keypad_function(char digit)
 {
 
        /* we must be in a call, in order to send messages to the call */
-       if (e_terminal[0] == '\0')
+       if (e_ext.number[0] == '\0')
        {
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) IGNORING keypad received not from extension.\n", ea_endpoint->ep_serial);
                return;
@@ -631,7 +764,7 @@ static struct mISDNport *EndpointAppPBX::hunt_port(char *ifname, int *channel)
        /* see if port is available */
        if (!ifport->mISDNport)
        {
-               printlog("%3d  port#%d position %d is not available, skipping.\n", ea_endpoint->ep_serial, ifport_start->portnum, index);
+               printlog("%3d  port#%d position %d is not available, skipping.\n", ea_endpoint->ep_serial, ifport->portnum, index);
                goto portbusy;
        }
        mISDNport = ifport->mISDNport;
@@ -641,14 +774,14 @@ static struct mISDNport *EndpointAppPBX::hunt_port(char *ifname, int *channel)
        /* see if port is administratively blocked */
        if (ifport->block)
        {
-               printlog("%3d  port#%d position %d is administratively blocked, skipping.\n", ea_endpoint->ep_serial, ifport_start->portnum, index);
+               printlog("%3d  port#%d position %d is administratively blocked, skipping.\n", ea_endpoint->ep_serial, ifport->portnum, index);
                goto portbusy;
        }
 
        /* see if link is up */
        if (mISDNport->ptp && !mISDNport->l2link)
        {
-               printlog("%3d  port#%d position %d is ptp but layer 2 is down.\n", ea_endpoint->ep_serial, ifport_start->portnum, index);
+               printlog("%3d  port#%d position %d is ptp but layer 2 is down.\n", ea_endpoint->ep_serial, ifport->portnum, index);
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) skipping because it is PTP with L2 down\n", ea_endpoint->ep_serial);
                goto portbusy;
        }
@@ -670,7 +803,7 @@ static struct mISDNport *EndpointAppPBX::hunt_port(char *ifname, int *channel)
                                if (mISDNport->b_port[i] == NULL)
                                {
                                        *channel = i+1+(i>=15);
-                                       printlog("%3d  port#%d position %d selecting free channel %d\n", ea_endpoint->ep_serial, ifport_start->portnum, index, *channel);
+                                       printlog("%3d  port#%d position %d selecting free channel %d\n", ea_endpoint->ep_serial, ifport->portnum, index, *channel);
                                        break;
                                }
                                i++;
@@ -682,12 +815,12 @@ static struct mISDNport *EndpointAppPBX::hunt_port(char *ifname, int *channel)
                        {
                                break; /* all channel in use or reserverd */
                        }
-                       printlog("%3d  port#%d position %d using with 'any channel'\n", ea_endpoint->ep_serial, ifport_start->portnum, index);
+                       printlog("%3d  port#%d position %d using with 'any channel'\n", ea_endpoint->ep_serial, ifport->portnum, index);
                        *channel = SEL_CHANNEL_ANY;
                        break;
 
                        case CHANNEL_NO: /* call waiting */
-                       printlog("%3d  port#%d position %d using with 'no channel'\n", ea_endpoint->ep_serial, ifport_start->portnum, index);
+                       printlog("%3d  port#%d position %d using with 'no channel'\n", ea_endpoint->ep_serial, ifport->portnum, index);
                        *channel = SEL_CHANNEL_NO;
                        break;
 
@@ -700,14 +833,13 @@ static struct mISDNport *EndpointAppPBX::hunt_port(char *ifname, int *channel)
                        if (mISDNport->b_port[i] == NULL)
                        {
                                *channel = selchannel->channel;
-                               printlog("%3d  port#%d position %d selecting given channel %d\n", ea_endpoint->ep_serial, ifport_start->portnum, index, *channel);
+                               printlog("%3d  port#%d position %d selecting given channel %d\n", ea_endpoint->ep_serial, ifport->portnum, index, *channel);
                                break;
                        }
                        break;
                }
                if (*channel)
                        break; /* found channel */
-               printlog("%3d  port#%d position %d skipping, because no channel found.\n", ea_endpoint->ep_serial, ifport_start->portnum, index);
                selchannel = selchannel->next;
        }
 
@@ -726,6 +858,8 @@ static struct mISDNport *EndpointAppPBX::hunt_port(char *ifname, int *channel)
                return(mISDNport);
        }
 
+       printlog("%3d  port#%d position %d skipping, because no channel found.\n", ea_endpoint->ep_serial, ifport->portnum, index);
+
        portbusy:
        /* go next port, until all ports are checked */
        index++;
@@ -798,7 +932,7 @@ void EndpointAppPBX::out_setup(void)
                        while(atemp)
                        {
                                if (atemp != this)
-                               if (!strcmp(atemp->e_terminal, e_terminal))
+                               if (!strcmp(atemp->e_ext.number, e_ext.number))
                                        break;
                                atemp = atemp->next;
                        }
@@ -852,7 +986,7 @@ void EndpointAppPBX::out_setup(void)
                        {
                                if (checkapp != this) /* any other endpoint except our own */
                                {
-                                       if (!strcmp(checkapp->e_terminal, e_terminal))
+                                       if (!strcmp(checkapp->e_ext.number, e_ext.number))
                                        {
                                                /* present to forwarded party */
                                                if (e_ext.anon_ignore && e_callerinfo.id[0])
@@ -921,10 +1055,10 @@ void EndpointAppPBX::out_setup(void)
                        PDEBUG(DEBUG_EPOINT, "EPOINT(%d) got port %s\n", ea_endpoint->ep_serial, port->p_name);
                        memset(&dialinginfo, 0, sizeof(dialinginfo));
                        SCPY(dialinginfo.number, e_dialinginfo.number);
-                       dialinginfo.itype = INFO_ITYPE_INTERN;
+                       dialinginfo.itype = INFO_ITYPE_ISDN_EXTENSION;
                        dialinginfo.ntype = e_dialinginfo.ntype;
                        /* create port_list relation */
-                       portlist = ea_endpoint->portlist_new(port->p_serial, port->p_type);
+                       portlist = ea_endpoint->portlist_new(port->p_serial, port->p_type, mISDNport->is_earlyb);
                        if (!portlist)
                        {
                                PERROR("EPOINT(%d) cannot allocate port_list relation\n", ea_endpoint->ep_serial);
@@ -946,7 +1080,7 @@ void EndpointAppPBX::out_setup(void)
                        memcpy(&message->param.setup.redirinfo, &e_redirinfo, sizeof(struct redir_info));
                        memcpy(&message->param.setup.callerinfo, &e_callerinfo, sizeof(struct caller_info));
                        memcpy(&message->param.setup.capainfo, &e_capainfo, sizeof(struct capa_info));
-//terminal                     SCPY(message->param.setup.from_terminal, e_terminal);
+//terminal                     SCPY(message->param.setup.from_terminal, e_ext.number);
 //terminal                     if (e_dialinginfo.number)
 //terminal                             SCPY(message->param.setup.to_terminal, e_dialinginfo.number);
                        /* handle restricted caller ids */
@@ -995,7 +1129,8 @@ void EndpointAppPBX::out_setup(void)
                while(*p)
                {
                        /* only if vbox should be dialed, and terminal is given */
-                       if (!strcmp(p, "vbox") && e_terminal[0])
+                       earlyb = 0;
+                       if (!strcmp(p, "vbox") && e_ext.number[0])
                        {
                                /* go to the end of p */
                                p += strlen(p);
@@ -1009,7 +1144,7 @@ void EndpointAppPBX::out_setup(void)
                                        break;
                                }
                                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) allocated port %s\n", ea_endpoint->ep_serial, port->p_name);
-                               UCPY(cfp, e_terminal); /* cfp or any other direct forward/vbox */
+                               UCPY(cfp, e_ext.number); /* cfp or any other direct forward/vbox */
                        } else
                        {
                                cfp[0] = '\0';
@@ -1069,6 +1204,7 @@ void EndpointAppPBX::out_setup(void)
                                        /* creating EXTERNAL port*/
                                        SPRINT(portname, "%s-%d-out", mISDNport->interface_name, mISDNport->portnum);
                                        port = new Pdss1((mISDNport->ntmode)?PORT_TYPE_DSS1_NT_OUT:PORT_TYPE_DSS1_TE_OUT, mISDNport, portname, &port_settings);
+                                       earlyb = mISDNport->is_earlyb;
                                } else
                                {
                                        port = NULL;
@@ -1086,7 +1222,7 @@ void EndpointAppPBX::out_setup(void)
                        SCPY(dialinginfo.number, cfp);
                        dialinginfo.itype = INFO_ITYPE_EXTERN;
                        dialinginfo.ntype = e_dialinginfo.ntype;
-                       portlist = ea_endpoint->portlist_new(port->p_serial, port->p_type);
+                       portlist = ea_endpoint->portlist_new(port->p_serial, port->p_type, earlyb);
                        if (!portlist)
                        {
                                PERROR("EPOINT(%d) cannot allocate port_list relation\n", ea_endpoint->ep_serial);
@@ -1102,12 +1238,12 @@ void EndpointAppPBX::out_setup(void)
                        if (e_ext.clip==CLIP_HIDE && port->p_type!=PORT_TYPE_VBOX_OUT)
                        {
                                SCPY(message->param.setup.callerinfo.id, e_ext.callerid);
-                               SCPY(message->param.setup.callerinfo.intern, e_terminal);
+                               SCPY(message->param.setup.callerinfo.intern, e_ext.number);
                                message->param.setup.callerinfo.ntype = e_ext.callerid_type;
                                message->param.setup.callerinfo.present = e_ext.callerid_present;
                        }
                        memcpy(&message->param.setup.capainfo, &e_capainfo, sizeof(struct capa_info));
-//terminal                     SCPY(message->param.setup.from_terminal, e_terminal);
+//terminal                     SCPY(message->param.setup.from_terminal, e_ext.number);
 //terminal                     if (e_dialinginfo.number)
 //terminal                             SCPY(message->param.setup.to_terminal, e_dialinginfo.number);
                                /* handle restricted caller ids */
@@ -1133,91 +1269,6 @@ void EndpointAppPBX::out_setup(void)
                }
                break;
 
-#ifdef H323
-               /* *********************** h323 call */
-               case INFO_ITYPE_H323:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) dialing H323: '%s'\n", ea_endpoint->ep_serial, e_dialinginfo.number);
-
-               /* alloc port */
-               if (!(port = new H323Port(PORT_TYPE_H323_OUT, "H323-out", &port_settings)))
-               {
-                       PERROR("EPOINT(%d) no mem for port\n", ea_endpoint->ep_serial);
-                       break;
-               }
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) allocated port %s\n", ea_endpoint->ep_serial, port->p_name);
-               memset(&dialinginfo, 0, sizeof(dialinginfo));
-               SCPY(dialinginfo.number, e_dialinginfo.number);
-               dialinginfo.itype = INFO_ITYPE_H323;
-               dialinginfo.ntype = e_dialinginfo.ntype;
-               portlist = ea_endpoint->portlist_new(port->p_serial, port->p_type);
-               if (!portlist)
-               {
-                       PERROR("EPOINT(%d) cannot allocate port_list relation\n", ea_endpoint->ep_serial);
-                       delete port;
-                       release(RELEASE_ALL, LOCATION_PRIVATE_LOCAL, cause, LOCATION_PRIVATE_LOCAL, CAUSE_NORMAL); /* RELEASE_TYPE, call, port */
-                       return;
-               }
-//printf("INTERNAL caller=%s,id=%s,dial=%s\n", param.setup.networkid, param.setup.callerinfo.id, param.setup.dialinginfo.number);
-               message = message_create(ea_endpoint->ep_serial, portlist->port_id, EPOINT_TO_PORT, MESSAGE_SETUP);
-               memcpy(&message->param.setup.dialinginfo, &dialinginfo, sizeof(struct dialing_info));
-               memcpy(&message->param.setup.redirinfo, &e_redirinfo, sizeof(struct redir_info));
-               memcpy(&message->param.setup.callerinfo, &e_callerinfo, sizeof(struct caller_info));
-               memcpy(&message->param.setup.capainfo, &e_capainfo, sizeof(struct capa_info));
-//terminal             SCPY(message->param.setup.from_terminal, e_terminal);
-//terminal             if (e_dialinginfo.number)
-//terminal                     SCPY(message->param.setup.to_terminal, e_dialinginfo.number);
-               /* handle restricted caller ids */
-               apply_callerid_restriction(e_ext.anon_ignore, port->p_type, message->param.setup.callerinfo.id, &message->param.setup.callerinfo.ntype, &message->param.setup.callerinfo.present, &message->param.setup.callerinfo.screen, message->param.setup.callerinfo.voip, message->param.setup.callerinfo.intern, message->param.setup.callerinfo.name);
-               apply_callerid_restriction(e_ext.anon_ignore, port->p_type, message->param.setup.redirinfo.id, &message->param.setup.redirinfo.ntype, &message->param.setup.redirinfo.present, NULL, message->param.setup.redirinfo.voip, message->param.setup.redirinfo.intern, 0);
-               /* display callerid if desired for extension */
-               SCPY(message->param.setup.callerinfo.display, apply_callerid_display(message->param.setup.callerinfo.id, message->param.setup.callerinfo.itype, message->param.setup.callerinfo.ntype, message->param.setup.callerinfo.present, message->param.setup.callerinfo.screen, message->param.setup.callerinfo.voip, message->param.setup.callerinfo.intern, message->param.setup.callerinfo.name));
-               message_put(message);
-               logmessage(message);
-               break;
-#endif
-#ifdef SIP
-               /* *********************** sip call */
-               case INFO_ITYPE_SIP:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) dialing SIP: '%s'\n", ea_endpoint->ep_serial, e_dialinginfo.number);
-
-               /* alloc port */
-               if (!(port = new Psip(PORT_TYPE_SIP_OUT, 0, 0, e_dialinginfo.number)))
-               {
-                       PERROR("EPOINT(%d) no mem for port\n", ea_endpoint->ep_serial);
-                       break;
-               }
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) allocated port %s\n", ea_endpoint->ep_serial, port->p_name);
-               memset(&dialinginfo, 0, sizeof(dialinginfo));
-               SCPY(dialinginfo.number, e_dialinginfo.number);
-               dialinginfo.itype = INFO_ITYPE_SIP;
-               dialinginfo.ntype = e_dialinginfo.ntype;
-               portlist = ea_endpoint->portlist_new(port->p_serial, port->p_type);
-               if (!portlist)
-               {
-                       PERROR("EPOINT(%d) cannot allocate port_list relation\n", ea_endpoint->ep_serial);
-                       delete port;
-                       release(RELEASE_ALL, LOCATION_PRIVATE_LOCAL, cause, LOCATION_PRIVATE_LOCAL, CAUSE_NORMAL); /* RELEASE_TYPE, call, port */
-                       return;
-               }
-//printf("INTERNAL caller=%s,id=%s,dial=%s\n", param.setup.networkid, param.setup.callerinfo.id, param.setup.dialinginfo.number);
-               message = message_create(ea_endpoint->ep_serial, portlist->port_id, EPOINT_TO_PORT, MESSAGE_SETUP);
-               memcpy(&message->param.setup.dialinginfo, &dialinginfo, sizeof(struct dialing_info));
-               memcpy(&message->param.setup.redirinfo, &e_redirinfo, sizeof(struct redir_info));
-               memcpy(&message->param.setup.callerinfo, &e_callerinfo, sizeof(struct caller_info));
-               memcpy(&message->param.setup.capainfo, &e_capainfo, sizeof(struct capa_info));
-//terminal             SCPY(message->param.setup.from_terminal, e_terminal);
-//terminal             if (e_dialinginfo.number)
-//terminal                     SCPY(message->param.setup.to_terminal, e_dialinginfo.number);
-               /* handle restricted caller ids */
-               apply_callerid_restriction(e_ext.anon_ignore, port->p_type, message->param.setup.callerinfo.id, &message->param.setup.callerinfo.ntype, &message->param.setup.callerinfo.present, &message->param.setup.callerinfo.screen, message->param.setup.callerinfo.voip, message->param.setup.callerinfo.intern, message->param.setup.callerinfo.name);
-               apply_callerid_restriction(e_ext.anon_ignore, port->p_type, message->param.setup.redirinfo.id, &message->param.setup.redirinfo.ntype, &message->param.setup.redirinfo.present, NULL, message->param.setup.redirinfo.voip, message->param.setup.redirinfo.intern, 0);
-               /* display callerid if desired for extension */
-               SCPY(message->param.setup.callerinfo.display, apply_callerid_display(message->param.setup.callerinfo.id, message->param.setup.callerinfo.itype, message->param.setup.callerinfo.ntype, message->param.setup.callerinfo.present, message->param.setup.callerinfo.screen, message->param.setup.callerinfo.voip, message->param.setup.callerinfo.intern, message->param.setup.callerinfo.name));
-               message_put(message);
-               logmessage(message);
-               break;
-#endif
-
                /* *********************** external call */
                default:
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) dialing external: '%s'\n", ea_endpoint->ep_serial, e_dialinginfo.number);
@@ -1295,7 +1346,7 @@ void EndpointAppPBX::out_setup(void)
                        SCPY(dialinginfo.number, number);
                        dialinginfo.itype = INFO_ITYPE_EXTERN;
                        dialinginfo.ntype = e_dialinginfo.ntype;
-                       portlist = ea_endpoint->portlist_new(port->p_serial, port->p_type);
+                       portlist = ea_endpoint->portlist_new(port->p_serial, port->p_type, mISDNport->is_earlyb);
                        if (!portlist)
                        {
                                PERROR("EPOINT(%d) cannot allocate port_list relation\n", ea_endpoint->ep_serial);
@@ -1310,7 +1361,7 @@ void EndpointAppPBX::out_setup(void)
                        memcpy(&message->param.setup.redirinfo, &e_redirinfo, sizeof(struct redir_info));
                        memcpy(&message->param.setup.callerinfo, &e_callerinfo, sizeof(struct caller_info));
                        memcpy(&message->param.setup.capainfo, &e_capainfo, sizeof(struct capa_info));
-//terminal                     SCPY(message->param.setup.from_terminal, e_terminal);
+//terminal                     SCPY(message->param.setup.from_terminal, e_ext.number);
 //terminal                     if (e_dialinginfo.number)
 //terminal                             SCPY(message->param.setup.to_terminal, e_dialinginfo.number);
                                /* handle restricted caller ids */
@@ -1568,7 +1619,6 @@ void EndpointAppPBX::port_setup(struct port_list *portlist, int message_type, un
 {
        struct message          *message;
        char                    buffer[256];
-       struct interface        *interface;
        char                    extension[32];
        char                    extension1[32];
        char                    *p;
@@ -1582,92 +1632,29 @@ void EndpointAppPBX::port_setup(struct port_list *portlist, int message_type, un
        memcpy(&e_capainfo, &param->setup.capainfo, sizeof(e_capainfo));
        e_dtmf = param->setup.dtmf;
 
-       /* check where the call is from */
-       if ((param->setup.port_type&PORT_CLASS_mISDN_MASK) == PORT_CLASS_mISDN_DSS1)
+       /* screen by interface */
+       if (e_callerinfo.interface[0])
        {
-               interface = interface_first;
-               while(interface)
-               {
-                       if (param->setup.isdn_port>=0 && param->setup.isdn_port<(int)sizeof(interface->ports))
-                       {
-                               if (interface->ports[param->setup.isdn_port])
-                                       break;
-                       }
-                       interface = interface->next;
-               }
-               if (interface)
-               {
-                       /* interface is known */
-                       if (interface->iftype==IF_INTERN)
-                       {
-                               /* interface is internal */
-                               if (interface->extensions[0])
-                               {
-                                       /* extensions are assigned to interface */
-                                       p = interface->extensions;
-                                       extension1[0] = '\0';
-                                       while(*p)
-                                       {
-                                               extension[0] = '\0';    
-                                               while(*p!=',' && *p!='\0')
-                                                       SCCAT(extension, *p++);
-                                               if (*p == ',')
-                                                       p++;
-                                               if (!extension1[0])
-                                                       SCPY(extension1, extension);
-                                               if (!strcmp(extension, e_callerinfo.id))
-                                                       break;
-                                               extension[0] = '\0'; /* NOTE: empty if we did not find */
-                                       }
-                                       if (extension[0])
-                                       {
-                                               /* id was found at extension's list */
-                                               e_callerinfo.itype = INFO_ITYPE_INTERN;
-                                               SCPY(e_callerinfo.intern, extension);
-                                       } else
-                                       if (extension1[0])
-                                       {
-                                               /* if was provided by default */
-                                               e_callerinfo.itype = INFO_ITYPE_INTERN;
-                                               printlog("%3d  endpoint INTERFACE Caller ID '%s' not in list for interface '%s', using first ID '%s'.\n", ea_endpoint->ep_serial, e_callerinfo.id, interface->name, extension1);
-                                               SCPY(e_callerinfo.intern, extension1);
-                                       }
-                               } else
-                               {
-                                       /* no extension given, so we use the caller id */
-                                       e_callerinfo.itype = INFO_ITYPE_INTERN;
-                                       SCPY(e_callerinfo.intern, e_callerinfo.id);
-                               }
-                       } else
-                       {
-                               /* interface is external */
-                               e_callerinfo.intern[0] = '\0';
-                       }
-               } else
-               {
-                       /* interface is unknown */
-                       message_disconnect_port(portlist, CAUSE_REJECTED, LOCATION_PRIVATE_LOCAL, "");
-                       new_state(EPOINT_STATE_OUT_DISCONNECT);
-                       set_tone(portlist, "cause_80"); /* pbx cause: extension not authorized */
-                       e_terminal[0] = '\0'; /* no terminal */
-                       return;
-               }
+               /* screen incoming caller id */
+               screen(0, e_callerinfo.id, sizeof(e_callerinfo.id), &e_callerinfo.ntype, &e_callerinfo.present);
        }
+colp, outclip, outcolp
 
+       /* process extension */
        if (e_callerinfo.itype == INFO_ITYPE_INTERN)
        {
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) incoming call is internal\n", ea_endpoint->ep_serial);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) incoming call is extension\n", ea_endpoint->ep_serial);
                /* port makes call from extension */
-               SCPY(e_callerinfo.id, e_callerinfo.intern);
-               SCPY(e_terminal, e_callerinfo.intern);
-               SCPY(e_terminal_interface, e_callerinfo.interface);
+               SCPY(e_callerinfo.intern, e_callerinfo.id);
+               SCPY(e_ext.number, e_callerinfo.intern);
+               SCPY(e_extension_interface, e_callerinfo.interface);
        } else
        {
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) incoming call is external or voip\n", ea_endpoint->ep_serial);
        }
        printlog("%3d  incoming %s='%s'%s%s%s%s dialing='%s'\n",
                ea_endpoint->ep_serial,
-               (e_callerinfo.intern[0])?"SETUP from intern":"SETUP from extern",
+               (e_callerinfo.intern[0])?"SETUP from extension":"SETUP from extern",
                (e_callerinfo.intern[0])?e_callerinfo.intern:e_callerinfo.id,
                (e_callerinfo.present==INFO_PRESENT_RESTRICTED)?" anonymous":"",
                (e_redirinfo.id[0])?"redirected='":"",
@@ -1678,18 +1665,18 @@ void EndpointAppPBX::port_setup(struct port_list *portlist, int message_type, un
 
        if (e_callerinfo.itype == INFO_ITYPE_INTERN)
        {
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) call from extension '%s'\n", ea_endpoint->ep_serial, e_terminal);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) call from extension '%s'\n", ea_endpoint->ep_serial, e_ext.number);
 
                /* get extension's info about caller */
-               if (!read_extension(&e_ext, e_terminal))
+               if (!read_extension(&e_ext, e_ext.number))
                {
                        /* extension doesn't exist */
                        printlog("%3d  endpoint EXTENSION '%s' doesn't exist, please check or create.\n", ea_endpoint->ep_serial, e_callerinfo.id);
-                       PDEBUG(DEBUG_EPOINT, "EPOINT(%d) rejecting call from not existing extension: '%s'\n", ea_endpoint->ep_serial, e_terminal);
+                       PDEBUG(DEBUG_EPOINT, "EPOINT(%d) rejecting call from not existing extension: '%s'\n", ea_endpoint->ep_serial, e_ext.number);
                        message_disconnect_port(portlist, CAUSE_REJECTED, LOCATION_PRIVATE_LOCAL, "");
                        new_state(EPOINT_STATE_OUT_DISCONNECT);
                        set_tone(portlist, "cause_80"); /* pbx cause: extension not authorized */
-                       e_terminal[0] = '\0'; /* no terminal */
+                       e_ext.number[0] = '\0'; /* no terminal */
                        return;
                }
                writeext = 0;
@@ -1734,7 +1721,7 @@ void EndpointAppPBX::port_setup(struct port_list *portlist, int message_type, un
 
                /* extension is written */
                if (writeext)
-                       write_extension(&e_ext, e_terminal);
+                       write_extension(&e_ext, e_ext.number);
 
                /* set volume of rx and tx */
                if (param->setup.callerinfo.itype == INFO_ITYPE_INTERN)
@@ -1751,21 +1738,21 @@ void EndpointAppPBX::port_setup(struct port_list *portlist, int message_type, un
                if (e_ext.record!=CODEC_OFF && (e_capainfo.bearer_capa==INFO_BC_SPEECH || e_capainfo.bearer_capa==INFO_BC_AUDIO))
                {
                        /* check if we are a terminal */
-                       if (e_terminal[0] == '\0')
+                       if (e_ext.number[0] == '\0')
                                PERROR("Port(%d) cannot record because we are not a terminal\n", ea_endpoint->ep_serial);
                        else
                        {
                                port = find_port_id(portlist->port_id);
                                if (port)
-                                       port->open_record(e_ext.record, 0, 0, e_terminal, e_ext.anon_ignore, "", 0);
+                                       port->open_record(e_ext.record, 0, 0, e_ext.number, e_ext.anon_ignore, "", 0);
                        }
                }
        } else
        {
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) call from external port\n", ea_endpoint->ep_serial);
                /* no terminal identification */
-               e_terminal[0] = '\0';
-               e_terminal_interface[0] = '\0';
+               e_ext.number[0] = '\0';
+               e_extension_interface[0] = '\0';
                memset(&e_ext, 0, sizeof(e_ext));
                e_ext.rights = 4; /* right to dial internat */
        }
@@ -1782,7 +1769,7 @@ void EndpointAppPBX::port_setup(struct port_list *portlist, int message_type, un
                set_tone(portlist, "dialing");
        } else
        {
-               if (e_terminal[0])
+               if (e_ext.number[0])
                        set_tone(portlist, "dialpbx");
                else
                        set_tone(portlist, "dialtone");
@@ -1810,7 +1797,7 @@ void EndpointAppPBX::port_information(struct port_list *portlist, int message_ty
        /* turn off dtmf detection, in case dtmf is sent with keypad information */
        if (e_dtmf)
        {
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) received dialing information, so dtmf is now disabled, to prevent double detection by keypad+dtmf.\n", ea_endpoint->ep_serial, param->information.number, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) received dialing information, so dtmf is now disabled, to prevent double detection by keypad+dtmf.\n", ea_endpoint->ep_serial, param->information.number, e_ext.number, e_callerinfo.id);
                e_dtmf = 0;
        }
 
@@ -2025,7 +2012,7 @@ void EndpointAppPBX::port_overlap(struct port_list *portlist, int message_type,
                e_dialing_queue[0] = '\0';
        }
        /* check if pattern is available */
-       if (!ea_endpoint->ep_portlist->next && portlist->port_type==PORT_TYPE_DSS1_TE_OUT) /* one port_list relation and outgoing external*/
+       if (!ea_endpoint->ep_portlist->next && portlist->earlyb) /* one port_list relation and tones available */
        {
                /* indicate patterns */
                message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_PATTERN);
@@ -2038,7 +2025,7 @@ void EndpointAppPBX::port_overlap(struct port_list *portlist, int message_type,
        } else
        {
                /* indicate no patterns */
-               message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_PATTERN);
+               message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_NOPATTERN);
                message_put(message);
 
                /* disconnect audio, if not already */
@@ -2069,7 +2056,7 @@ void EndpointAppPBX::port_proceeding(struct port_list *portlist, int message_typ
                );
        e_state = EPOINT_STATE_OUT_PROCEEDING;
        /* check if pattern is availatle */
-       if (!ea_endpoint->ep_portlist->next && (portlist->port_type==PORT_TYPE_DSS1_TE_OUT || portlist->port_type==PORT_TYPE_VBOX_OUT)) /* one port_list relation and outgoing external*/
+       if (!ea_endpoint->ep_portlist->next && (portlist->earlyb || portlist->port_type==PORT_TYPE_VBOX_OUT)) /* one port_list relation and tones available */
        {
                /* indicate patterns */
                message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_PATTERN);
@@ -2082,7 +2069,7 @@ void EndpointAppPBX::port_proceeding(struct port_list *portlist, int message_typ
        } else
        {
                /* indicate no patterns */
-               message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_PATTERN);
+               message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_NOPATTERN);
                message_put(message);
 
                /* disconnect audio, if not already */
@@ -2112,7 +2099,7 @@ void EndpointAppPBX::port_alerting(struct port_list *portlist, int message_type,
                );
        new_state(EPOINT_STATE_OUT_ALERTING);
        /* check if pattern is available */
-       if (!ea_endpoint->ep_portlist->next && (portlist->port_type==PORT_TYPE_DSS1_TE_OUT || portlist->port_type==PORT_TYPE_VBOX_OUT)) /* one port_list relation and outgoing external*/
+       if (!ea_endpoint->ep_portlist->next && (portlist->earlyb || portlist->port_type==PORT_TYPE_VBOX_OUT)) /* one port_list relation and tones available */
        {
                /* indicate patterns */
                message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_PATTERN);
@@ -2182,22 +2169,28 @@ void EndpointAppPBX::port_connect(struct port_list *portlist, int message_type,
 
        e_start = now;
 
+       /* screen by interface */
+       if (e_callerinfo.interface[0])
+       {
+               /* screen incoming caller id */
+               screen(0, e_connectinfo.id, sizeof(e_connectinfo.id), &e_connectinfo.ntype, &e_connectinfo.present);
+       }
+
        /* screen connected name */
        if (e_ext.name[0])
                SCPY(e_connectinfo.name, e_ext.name);
 
        /* add internal id to colp */
-       SCPY(e_connectinfo.intern, e_terminal);
+       SCPY(e_connectinfo.intern, e_ext.number);
 
        /* we store the connected port number */
-       SCPY(e_terminal_interface, e_connectinfo.interfaces);
+       SCPY(e_extension_interface, e_connectinfo.interfaces);
 
        /* for internal and am calls, we get the extension's id */
-       /* also for hidden calls to extension */
-       if (portlist->port_type==PORT_TYPE_DSS1_NT_OUT || portlist->port_type==PORT_TYPE_VBOX_OUT || e_ext.colp==COLP_HIDE)
+       if (portlist->port_type==PORT_TYPE_VBOX_OUT || e_ext.colp==COLP_HIDE)
        {
                SCPY(e_connectinfo.id, e_ext.callerid);
-               SCPY(e_connectinfo.intern, e_terminal);
+               SCPY(e_connectinfo.intern, e_ext.number);
                e_connectinfo.itype = INFO_ITYPE_INTERN;
                e_connectinfo.ntype = e_ext.callerid_type;
                e_connectinfo.present = e_ext.callerid_present;
@@ -2221,7 +2214,7 @@ void EndpointAppPBX::port_connect(struct port_list *portlist, int message_type,
        }
 
        e_cfnr_call = e_cfnr_release = 0;
-       if (e_terminal[0])
+       if (e_ext.number[0])
                e_dtmf = 1; /* allow dtmf */
 //             if (call_countrelations(ea_endpoint->ep_call_id) == 2)
        {
@@ -2239,18 +2232,6 @@ void EndpointAppPBX::port_connect(struct port_list *portlist, int message_type,
                                        e_connectinfo.present = INFO_PRESENT_ALLOWED;
                                }
                        }
-                       if (portlist->port_type==PORT_TYPE_H323_OUT) /* h323 extension answered */
-                       {
-                               SCPY(e_connectinfo.voip, port->p_dialinginfo.number);
-                               e_connectinfo.present = INFO_PRESENT_ALLOWED;
-//                             e_connectinfo.ntype = INFO_NTYPE_UNKNOWN;
-                       }
-                       if (portlist->port_type==PORT_TYPE_SIP_OUT) /* sip extension answered */
-                       {
-                               SCPY(e_connectinfo.voip, port->p_dialinginfo.number);
-                               e_connectinfo.present = INFO_PRESENT_ALLOWED;
-//                             e_connectinfo.ntype = INFO_NTYPE_UNKNOWN;
-                       }
                }
                message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, message_type);
                memcpy(&message->param.connectinfo, &e_connectinfo, sizeof(struct connect_info));
@@ -2265,15 +2246,15 @@ void EndpointAppPBX::port_connect(struct port_list *portlist, int message_type,
        {
                /* callback */
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) we have a callback, so we create a call with cbcaller: \"%s\".\n", ea_endpoint->ep_serial, e_cbcaller);
-               SCPY(e_terminal, e_cbcaller);
+               SCPY(e_ext.number, e_cbcaller);
                new_state(EPOINT_STATE_IN_OVERLAP);
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) callback from extension '%s'\n", ea_endpoint->ep_serial, e_terminal);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) callback from extension '%s'\n", ea_endpoint->ep_serial, e_ext.number);
 
                /* get extension's info about terminal */
-               if (!read_extension(&e_ext, e_terminal))
+               if (!read_extension(&e_ext, e_ext.number))
                {
                        /* extension doesn't exist */
-                       PDEBUG(DEBUG_EPOINT, "EPOINT(%d) rejecting callback from not existing extension: '%s'\n", ea_endpoint->ep_serial, e_terminal);
+                       PDEBUG(DEBUG_EPOINT, "EPOINT(%d) rejecting callback from not existing extension: '%s'\n", ea_endpoint->ep_serial, e_ext.number);
                        message_disconnect_port(portlist, CAUSE_REJECTED, LOCATION_PRIVATE_LOCAL, "");
                        new_state(EPOINT_STATE_OUT_DISCONNECT);
                        set_tone(portlist, "cause_80"); /* pbx cause: extension not authorized */
@@ -2288,7 +2269,7 @@ void EndpointAppPBX::port_connect(struct port_list *portlist, int message_type,
 
                /* use caller id (or if exist: id_next_call) for this call */
                e_callerinfo.screen = INFO_SCREEN_NETWORK;
-               SCPY(e_callerinfo.intern, e_terminal);
+               SCPY(e_callerinfo.intern, e_ext.number);
                if (e_ext.id_next_call_present >= 0)
                {
                        SCPY(e_callerinfo.id, e_ext.id_next_call);
@@ -2296,7 +2277,7 @@ void EndpointAppPBX::port_connect(struct port_list *portlist, int message_type,
                        e_callerinfo.ntype = e_ext.id_next_call_type;
                        e_ext.id_next_call_present = -1;
                        /* extension is written */
-                       write_extension(&e_ext, e_terminal);
+                       write_extension(&e_ext, e_ext.number);
                } else
                {
                        SCPY(e_callerinfo.id, e_ext.callerid);
@@ -2308,7 +2289,7 @@ void EndpointAppPBX::port_connect(struct port_list *portlist, int message_type,
                e_dtmf = 1;
 
                /* check if caller id is NOT authenticated */
-               if (!parse_callbackauth(e_terminal, &e_callbackinfo))
+               if (!parse_callbackauth(e_ext.number, &e_callbackinfo))
                {
                        /* make call state to enter password */
                        new_state(EPOINT_STATE_IN_OVERLAP);
@@ -2342,16 +2323,16 @@ void EndpointAppPBX::port_connect(struct port_list *portlist, int message_type,
        }
 
        /* start recording if enabled, not when answering machine answers */
-       if (param->connectinfo.itype!=INFO_ITYPE_VBOX && e_terminal[0] && e_ext.record!=CODEC_OFF && (e_capainfo.bearer_capa==INFO_BC_SPEECH || e_capainfo.bearer_capa==INFO_BC_AUDIO))
+       if (param->connectinfo.itype!=INFO_ITYPE_VBOX && e_ext.number[0] && e_ext.record!=CODEC_OFF && (e_capainfo.bearer_capa==INFO_BC_SPEECH || e_capainfo.bearer_capa==INFO_BC_AUDIO))
        {
                /* check if we are a terminal */
-               if (e_terminal[0] == '\0')
+               if (e_ext.number[0] == '\0')
                        PERROR("Port(%d) cannot record because we are not a terminal\n", ea_endpoint->ep_serial);
                else
                {
                        port = find_port_id(portlist->port_id);
                        if (port)
-                               port->open_record(e_ext.record, 0, 0, e_terminal, e_ext.anon_ignore, "", 0);
+                               port->open_record(e_ext.record, 0, 0, e_ext.number, e_ext.anon_ignore, "", 0);
                }
        }
 }
@@ -2468,8 +2449,7 @@ void EndpointAppPBX::port_disconnect_release(struct port_list *portlist, int mes
                int haspatterns = 0;
                /* check if pattern is available */
                if (ea_endpoint->ep_portlist)
-               if (!ea_endpoint->ep_portlist->next)
-               if ((ea_endpoint->ep_portlist->port_type==PORT_TYPE_DSS1_TE_OUT) || (ea_endpoint->ep_portlist->port_type==PORT_TYPE_DSS1_TE_IN))
+               if (!ea_endpoint->ep_portlist->next && ea_endpoint->ep_portlist->earlyb)
 #warning wie ist das bei einem asterisk, gibts auch tones?
                if (callpbx_countrelations(ea_endpoint->ep_call_id)==2 // we must count relations, in order not to disturb the conference ; NOTE: 
                 && message_type != MESSAGE_RELEASE) // if we release, we are done
@@ -2787,7 +2767,7 @@ void EndpointAppPBX::ea_message_port(unsigned long port_id, int message_type, un
                return;
        }
 
-//     PDEBUG(DEBUG_EPOINT, "received message %d (terminal %s, caller id %s)\n", message, e_terminal, e_callerinfo.id);
+//     PDEBUG(DEBUG_EPOINT, "received message %d (terminal %s, caller id %s)\n", message, e_ext.number, e_callerinfo.id);
        switch(message_type)
        {
                case MESSAGE_DATA: /* data from port */
@@ -2849,19 +2829,19 @@ void EndpointAppPBX::ea_message_port(unsigned long port_id, int message_type, un
 
                /* PORT sends INFORMATION message */
                case MESSAGE_INFORMATION: /* additional digits received */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) incoming call dialing more=%s (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, param->information.number, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) incoming call dialing more=%s (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, param->information.number, e_ext.number, e_callerinfo.id);
                port_information(portlist, message_type, param);
                break;
 
                /* PORT sends FACILITY message */
                case MESSAGE_FACILITY:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) incoming facility (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) incoming facility (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                port_facility(portlist, message_type, param);
                break;
 
                /* PORT sends DTMF message */
                case MESSAGE_DTMF: /* dtmf digits received */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) dtmf digit=%c (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, param->dtmf, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) dtmf digit=%c (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, param->dtmf, e_ext.number, e_callerinfo.id);
                port_dtmf(portlist, message_type, param);
                break;
 
@@ -2873,7 +2853,7 @@ void EndpointAppPBX::ea_message_port(unsigned long port_id, int message_type, un
 
                /* PORT sends MORE message */
                case MESSAGE_OVERLAP:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) outgoing call is accepted [overlap dialing] (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) outgoing call is accepted [overlap dialing] (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if (e_state != EPOINT_STATE_OUT_SETUP)
                {
                        PDEBUG(DEBUG_EPOINT, "EPOINT(%d) ignored because we are not in setup state (for port_list: another portlist might have changed the state already).\n", ea_endpoint->ep_serial);
@@ -2884,7 +2864,7 @@ void EndpointAppPBX::ea_message_port(unsigned long port_id, int message_type, un
 
                /* PORT sends PROCEEDING message */
                case MESSAGE_PROCEEDING: /* port is proceeding */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) outgoing call is proceeding (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) outgoing call is proceeding (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if (e_state!=EPOINT_STATE_OUT_SETUP
                 && e_state!=EPOINT_STATE_OUT_OVERLAP)
                {
@@ -2896,7 +2876,7 @@ void EndpointAppPBX::ea_message_port(unsigned long port_id, int message_type, un
 
                /* PORT sends ALERTING message */
                case MESSAGE_ALERTING:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) outgoing call is ringing (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) outgoing call is ringing (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if (e_state!=EPOINT_STATE_OUT_SETUP
                 && e_state!=EPOINT_STATE_OUT_OVERLAP
                 && e_state!=EPOINT_STATE_OUT_PROCEEDING)
@@ -2909,7 +2889,7 @@ void EndpointAppPBX::ea_message_port(unsigned long port_id, int message_type, un
 
                /* PORT sends CONNECT message */
                case MESSAGE_CONNECT:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) outgoing call connected to %s (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_connectinfo.id, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) outgoing call connected to %s (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, e_connectinfo.id, e_ext.number, e_callerinfo.id);
                if (e_state!=EPOINT_STATE_OUT_SETUP
                 && e_state!=EPOINT_STATE_OUT_OVERLAP
                 && e_state!=EPOINT_STATE_OUT_PROCEEDING
@@ -2923,57 +2903,43 @@ void EndpointAppPBX::ea_message_port(unsigned long port_id, int message_type, un
 
                /* PORT sends DISCONNECT message */
                case MESSAGE_DISCONNECT: /* port is disconnected */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) call disconnect with cause=%d location=%d (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, param->disconnectinfo.cause, param->disconnectinfo.location, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) call disconnect with cause=%d location=%d (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, param->disconnectinfo.cause, param->disconnectinfo.location, e_ext.number, e_callerinfo.id);
                port_disconnect_release(portlist, message_type, param);
                break;
 
                /* PORT sends a RELEASE message */
                case MESSAGE_RELEASE: /* port releases */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) release with cause=%d location=%d (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, param->disconnectinfo.cause, param->disconnectinfo.location, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) release with cause=%d location=%d (terminal '%s', caller id '%s')\n", ea_endpoint->ep_serial, param->disconnectinfo.cause, param->disconnectinfo.location, e_ext.number, e_callerinfo.id);
                /* portlist is release at port_disconnect_release, thanx Paul */
                port_disconnect_release(portlist, message_type, param);
                break;
 
                /* PORT sends a TIMEOUT message */
                case MESSAGE_TIMEOUT:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received timeout (state=%d).\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id, param->state);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received timeout (state=%d).\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id, param->state);
                port_timeout(portlist, message_type, param);
                break; /* release */
 
                /* PORT sends a NOTIFY message */
                case MESSAGE_NOTIFY:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received notify.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received notify.\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                port_notify(portlist, message_type, param);
                break;
 
                /* PORT sends a SUSPEND message */
                case MESSAGE_SUSPEND:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received suspend.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received suspend.\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                port_suspend(portlist, message_type, param);
                break; /* suspend */
 
                /* PORT sends a RESUME message */
                case MESSAGE_RESUME:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received resume.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received resume.\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                port_resume(portlist, message_type, param);
                break;
 
-               case MESSAGE_VBOX_RECORD:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received recording message from vbox.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
-               /* check if we are a terminal */
-               if (e_terminal[0] == '\0')
-                       PERROR("Port(%d) cannot record because we are not a terminal\n", ea_endpoint->ep_serial);
-               else
-               {
-                       port = find_port_id(portlist->port_id);
-                       if (port)
-                               port->open_record(e_ext.vbox_codec, 2, 0, e_terminal, e_ext.anon_ignore, e_ext.vbox_email, e_ext.vbox_email_file);
-               }
-               /* the recording is done to the vbox directory rather than to the recording directory (using vbox_codec) */
-               break;
-
                default:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received a wrong message: %d\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id, message);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received a wrong message: %d\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id, message);
        }
 
        /* Note: this endpoint may be destroyed, so we MUST return */
@@ -3007,7 +2973,7 @@ void EndpointAppPBX::call_crypt(struct port_list *portlist, int message_type, un
                break;
 
                default:
-               PERROR("EPOINT(%d) epoint with terminal '%s' (caller id '%s') unknown crypt message: '%d'\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id, param->crypt.type);
+               PERROR("EPOINT(%d) epoint with terminal '%s' (caller id '%s') unknown crypt message: '%d'\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id, param->crypt.type);
        }
 }
 
@@ -3068,7 +3034,7 @@ void EndpointAppPBX::call_overlap(struct port_list *portlist, int message_type,
                        set_tone(portlist, "dialtone");
                        return;
        }
-       if (e_terminal[0])
+       if (e_ext.number[0])
                set_tone(portlist, "dialpbx");
        else
                set_tone(portlist, "dialtone");
@@ -3131,7 +3097,7 @@ void EndpointAppPBX::call_alerting(struct port_list *portlist, int message_type,
                set_tone(portlist, "ringing");
                return;
        }
-       if (e_terminal[0])
+       if (e_ext.number[0])
                set_tone(portlist, "ringpbx");
        else
                set_tone(portlist, "ringing");
@@ -3144,7 +3110,7 @@ void EndpointAppPBX::call_connect(struct port_list *portlist, int message_type,
 
        new_state(EPOINT_STATE_CONNECT);
 //                     UCPY(e_call_tone, "");
-       if (e_terminal[0])
+       if (e_ext.number[0])
                e_dtmf = 1; /* allow dtmf */
        e_powerdialing = 0;
        memcpy(&e_connectinfo, &param->connectinfo, sizeof(e_callerinfo));
@@ -3152,26 +3118,38 @@ void EndpointAppPBX::call_connect(struct port_list *portlist, int message_type,
        {
                message = message_create(ea_endpoint->ep_serial, portlist->port_id, EPOINT_TO_PORT, MESSAGE_CONNECT);
                memcpy(&message->param, param, sizeof(union parameter));
+               /* screen by interface */
+               if (e_connectinfo.interface[0])
+               {
+                       /* screen incoming caller id */
+                       screen(1, e_connectinfo.id, sizeof(e_connectinfo.id), &e_connectinfo.ntype, &e_connectinfo.present);
+               }
+               memcpy(&message->param.connnectinfo, e_connectinfo);
+
                /* screen clip if prefix is required */
-               if (e_terminal[0] && message->param.connectinfo.id[0] && e_ext.clip_prefix[0])
+               if (e_ext.number[0] && message->param.connectinfo.id[0] && e_ext.clip_prefix[0])
                {
                        SCPY(message->param.connectinfo.id, e_ext.clip_prefix);
                        SCAT(message->param.connectinfo.id, numberrize_callerinfo(e_connectinfo.id,e_connectinfo.ntype));
                        message->param.connectinfo.ntype = INFO_NTYPE_UNKNOWN;
                }
+
                /* use internal caller id */
-               if (e_terminal[0] && e_connectinfo.intern[0] && (message->param.connectinfo.present!=INFO_PRESENT_RESTRICTED || e_ext.anon_ignore))
+               if (e_ext.number[0] && e_connectinfo.intern[0] && (message->param.connectinfo.present!=INFO_PRESENT_RESTRICTED || e_ext.anon_ignore))
                {
                        SCPY(message->param.connectinfo.id, e_connectinfo.intern);
                        message->param.connectinfo.ntype = INFO_NTYPE_UNKNOWN;
                }
+
                /* handle restricted caller ids */
                apply_callerid_restriction(e_ext.anon_ignore, portlist->port_type, message->param.connectinfo.id, &message->param.connectinfo.ntype, &message->param.connectinfo.present, &message->param.connectinfo.screen, message->param.connectinfo.voip, message->param.connectinfo.intern, message->param.connectinfo.name);
                /* display callerid if desired for extension */
                SCPY(message->param.connectinfo.display, apply_callerid_display(message->param.connectinfo.id, message->param.connectinfo.itype, message->param.connectinfo.ntype, message->param.connectinfo.present, message->param.connectinfo.screen, message->param.connectinfo.voip, message->param.connectinfo.intern, message->param.connectinfo.name));
+
                /* use conp, if enabld */
                if (!e_ext.centrex)
                        message->param.connectinfo.name[0] = '\0';
+
                /* send connect */
                message_put(message);
                logmessage(message);
@@ -3210,7 +3188,7 @@ void EndpointAppPBX::call_disconnect_release(struct port_list *portlist, int mes
                        e_call_pattern = 0;
                }
                set_tone(ea_endpoint->ep_portlist, "redial");
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') redialing in %d seconds\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id, (int)e_powerdelay);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') redialing in %d seconds\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id, (int)e_powerdelay);
                /* send proceeding when powerdialing and still setup (avoid dialing timeout) */
                if (e_state==EPOINT_STATE_IN_OVERLAP)
                {
@@ -3380,14 +3358,14 @@ void EndpointAppPBX::call_setup(struct port_list *portlist, int message_type, un
        }
        /* if an internal extension is dialed, copy that number */
        if (param->setup.dialinginfo.itype==INFO_ITYPE_INTERN || param->setup.dialinginfo.itype==INFO_ITYPE_VBOX)
-               SCPY(e_terminal, param->setup.dialinginfo.number);
+               SCPY(e_ext.number, param->setup.dialinginfo.number);
        /* if an internal extension is dialed, get extension's info about caller */
-       if (e_terminal[0]) 
+       if (e_ext.number[0]) 
        {
-               if (!read_extension(&e_ext, e_terminal))
+               if (!read_extension(&e_ext, e_ext.number))
                {
-                       e_terminal[0] = '\0';
-                       PDEBUG(DEBUG_EPOINT, "EPOINT(%d) the called terminal='%s' is not found in directory tree!\n", ea_endpoint->ep_serial, e_terminal);
+                       e_ext.number[0] = '\0';
+                       PDEBUG(DEBUG_EPOINT, "EPOINT(%d) the called terminal='%s' is not found in directory tree!\n", ea_endpoint->ep_serial, e_ext.number);
                }
        }
 
@@ -3396,10 +3374,17 @@ void EndpointAppPBX::call_setup(struct port_list *portlist, int message_type, un
        memcpy(&e_redirinfo, &param->setup.redirinfo, sizeof(e_redirinfo));
        memcpy(&e_capainfo, &param->setup.capainfo, sizeof(e_capainfo));
 
+       /* screen by interface */
+       if (e_callerinfo.interface[0])
+       {
+               /* screen incoming caller id */
+               screen(1, e_callerinfo.id, sizeof(e_callerinfo.id), &e_callerinfo.ntype, &e_callerinfo.present);
+       }
+
        /* process (voice over) data calls */
        if (e_ext.datacall && e_capainfo.bearer_capa!=INFO_BC_SPEECH && e_capainfo.bearer_capa!=INFO_BC_AUDIO)
        {
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) handling data call as audio call: '%s'\n", ea_endpoint->ep_serial, e_terminal);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) handling data call as audio call: '%s'\n", ea_endpoint->ep_serial, e_ext.number);
                memset(&e_capainfo, 0, sizeof(e_capainfo));
                e_capainfo.bearer_capa = INFO_BC_AUDIO;
                e_capainfo.bearer_mode = INFO_BMODE_CIRCUIT;
@@ -3518,30 +3503,30 @@ void EndpointAppPBX::ea_message_call(unsigned long call_id, int message_type, un
                }
        }
 
-//     PDEBUG(DEBUG_EPOINT, "EPOINT(%d) received message %d for active call (terminal %s, caller id %s state=%d)\n", ea_endpoint->ep_serial, message, e_terminal, e_callerinfo.id, e_state);
+//     PDEBUG(DEBUG_EPOINT, "EPOINT(%d) received message %d for active call (terminal %s, caller id %s state=%d)\n", ea_endpoint->ep_serial, message, e_ext.number, e_callerinfo.id, e_state);
        switch(message_type)
        {
                /* CALL SENDS CRYPT message */
                case MESSAGE_CRYPT:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received crypt message: '%d'\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id, param->crypt.type);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received crypt message: '%d'\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id, param->crypt.type);
                call_crypt(portlist, message_type, param);
                break;
 
                /* CALL sends INFORMATION message */
                case MESSAGE_INFORMATION:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received more digits: '%s'\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id, param->information.number);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received more digits: '%s'\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id, param->information.number);
                call_information(portlist, message_type, param);
                break;
 
                /* CALL sends FACILITY message */
                case MESSAGE_FACILITY:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received facility\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received facility\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                call_facility(portlist, message_type, param);
                break;
 
                /* CALL sends OVERLAP message */
                case MESSAGE_OVERLAP:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received 'more info available'\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received 'more info available'\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if (e_state!=EPOINT_STATE_IN_SETUP
                 && e_state!=EPOINT_STATE_IN_OVERLAP)
                {
@@ -3553,7 +3538,7 @@ void EndpointAppPBX::ea_message_call(unsigned long call_id, int message_type, un
 
                /* CALL sends PROCEEDING message */
                case MESSAGE_PROCEEDING:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s (caller id '%s') received proceeding\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s (caller id '%s') received proceeding\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if(e_state!=EPOINT_STATE_IN_OVERLAP)
                {
                        PDEBUG(DEBUG_EPOINT, "EPOINT(%d) ignored because we are not in setup state.\n", ea_endpoint->ep_serial);
@@ -3564,7 +3549,7 @@ void EndpointAppPBX::ea_message_call(unsigned long call_id, int message_type, un
 
                /* CALL sends ALERTING message */
                case MESSAGE_ALERTING:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received alerting\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received alerting\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if (e_state!=EPOINT_STATE_IN_OVERLAP
                 && e_state!=EPOINT_STATE_IN_PROCEEDING)
                {
@@ -3576,7 +3561,7 @@ void EndpointAppPBX::ea_message_call(unsigned long call_id, int message_type, un
 
                /* CALL sends CONNECT message */
                case MESSAGE_CONNECT:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received connect\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received connect\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if (e_state!=EPOINT_STATE_IN_OVERLAP
                 && e_state!=EPOINT_STATE_IN_PROCEEDING
                 && e_state!=EPOINT_STATE_IN_ALERTING)
@@ -3590,7 +3575,7 @@ void EndpointAppPBX::ea_message_call(unsigned long call_id, int message_type, un
                /* CALL sends DISCONNECT/RELEASE message */
                case MESSAGE_DISCONNECT: /* call disconnect */
                case MESSAGE_RELEASE: /* call releases */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received %s with cause %d location %d\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id, (message_type==MESSAGE_DISCONNECT)?"disconnect":"release", param->disconnectinfo.cause, param->disconnectinfo.location);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received %s with cause %d location %d\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id, (message_type==MESSAGE_DISCONNECT)?"disconnect":"release", param->disconnectinfo.cause, param->disconnectinfo.location);
                call_disconnect_release(portlist, message_type, param);
                break;
 
@@ -3603,13 +3588,13 @@ void EndpointAppPBX::ea_message_call(unsigned long call_id, int message_type, un
 
                /* CALL sends special mISDNSIGNAL message */
                case MESSAGE_mISDNSIGNAL: /* isdn message to port */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received mISDNsignal message.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received mISDNsignal message.\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                call_mISDNsignal(portlist, message_type, param);
                break;
 
                /* CALL has pattern available */
                case MESSAGE_PATTERN: /* indicating pattern available */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received pattern availability.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received pattern availability.\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if (!e_call_pattern)
                {
                        PDEBUG(DEBUG_EPOINT, "-> pattern becomes available\n");
@@ -3624,16 +3609,17 @@ void EndpointAppPBX::ea_message_call(unsigned long call_id, int message_type, un
                        message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_CHANNEL);
                        message->param.channel = CHANNEL_STATE_CONNECT;
                        message_put(message);
-                       /* tell remote epoint to connect audio also, because we like to hear the patterns */
-                       message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_REMOTE_AUDIO);
-                       message->param.channel = CHANNEL_STATE_CONNECT;
-                       message_put(message);
+//                     /* tell remote epoint to connect audio also, because we like to hear the patterns */
+//                     message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_REMOTE_AUDIO);
+//                     message->param.channel = CHANNEL_STATE_CONNECT;
+//                     message_put(message);
+// patterns are available, remote already connected audio
                }
                break;
 
                /* CALL has no pattern available */
                case MESSAGE_NOPATTERN: /* indicating no pattern available */
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received pattern NOT available.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received pattern NOT available.\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                if (e_call_pattern)
                {
                        PDEBUG(DEBUG_EPOINT, "-> pattern becomes unavailable\n");
@@ -3645,22 +3631,24 @@ void EndpointAppPBX::ea_message_call(unsigned long call_id, int message_type, un
                }
                break;
 
+#if 0
                /* CALL (dunno at the moment) */
                case MESSAGE_REMOTE_AUDIO:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received audio remote request.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received audio remote request.\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                message = message_create(ea_endpoint->ep_serial, ea_endpoint->ep_call_id, EPOINT_TO_CALL, MESSAGE_CHANNEL);
                message->param.channel = param->channel;
                message_put(message);
                break;
+#endif
 
                /* CALL sends a notify message */
                case MESSAGE_NOTIFY:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received notify.\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received notify.\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id);
                call_notify(portlist, message_type, param);
                break;
 
                default:
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received a wrong message: #%d\n", ea_endpoint->ep_serial, e_terminal, e_callerinfo.id, message);
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) epoint with terminal '%s' (caller id '%s') received a wrong message: #%d\n", ea_endpoint->ep_serial, e_ext.number, e_callerinfo.id, message);
        }
 }
 
@@ -3729,7 +3717,7 @@ void EndpointAppPBX::pick_call(char *extensions)
                                {
                                        if (port->p_type == PORT_TYPE_VBOX_OUT)
                                        {
-                                               if (match_list(extensions, eapp->e_terminal))
+                                               if (match_list(extensions, eapp->e_ext.number))
                                                {
                                                        found = eapp;
                                                        vbox = 1;
@@ -3738,7 +3726,7 @@ void EndpointAppPBX::pick_call(char *extensions)
                                        }
                                        if ((port->p_type==PORT_TYPE_DSS1_NT_OUT || port->p_type==PORT_TYPE_DSS1_TE_OUT)
                                         && port->p_state==PORT_STATE_OUT_ALERTING)
-                                               if (match_list(extensions, eapp->e_terminal))
+                                               if (match_list(extensions, eapp->e_ext.number))
                                                {
                                                        found = eapp;
                                                }
@@ -3938,7 +3926,7 @@ void EndpointAppPBX::join_call(void)
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) cannot join: we have no port.\n", ea_endpoint->ep_serial);
                return;
        }
-       if (!e_terminal[0])
+       if (!e_ext.number[0])
        {
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) cannot join: we are not internal extension.\n", ea_endpoint->ep_serial);
                return;
@@ -3965,8 +3953,8 @@ void EndpointAppPBX::join_call(void)
                        other_eapp = other_eapp->next;
                        continue;
                }
-               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) comparing other endpoint candiate: (ep%d) terminal='%s' port=%s call=%d.\n", ea_endpoint->ep_serial, other_eapp->ea_endpoint->ep_serial, other_eapp->e_terminal, (other_eapp->ea_endpoint->ep_portlist)?"YES":"NO", other_eapp->ea_endpoint->ep_call_id);
-               if (other_eapp->e_terminal[0] /* has terminal */
+               PDEBUG(DEBUG_EPOINT, "EPOINT(%d) comparing other endpoint candiate: (ep%d) terminal='%s' port=%s call=%d.\n", ea_endpoint->ep_serial, other_eapp->ea_endpoint->ep_serial, other_eapp->e_ext.number, (other_eapp->ea_endpoint->ep_portlist)?"YES":"NO", other_eapp->ea_endpoint->ep_call_id);
+               if (other_eapp->e_ext.number[0] /* has terminal */
                 && other_eapp->ea_endpoint->ep_portlist /* has port */
                 && other_eapp->ea_endpoint->ep_call_id) /* has call */
                {
@@ -3974,7 +3962,7 @@ void EndpointAppPBX::join_call(void)
                        if (other_port) /* port still exists */
                        {
                                if (other_port->p_type==PORT_TYPE_DSS1_NT_OUT
-                                || other_port->p_type==PORT_TYPE_DSS1_NT_IN) /* port is internal isdn */
+                                || other_port->p_type==PORT_TYPE_DSS1_NT_IN) /* port is isdn nt-mode */
                                {
                                        other_pdss1 = (class Pdss1 *)other_port;
                                        PDEBUG(DEBUG_EPOINT, "EPOINT(%d) comparing other endpoint's port is of type isdn! comparing our portnum=%d with other's portnum=%d hold=%s ces=%d\n", ea_endpoint->ep_serial, our_pdss1->p_m_mISDNport->portnum, other_pdss1->p_m_mISDNport->portnum, (other_pdss1->p_m_hold)?"YES":"NO", other_pdss1->p_m_d_ces);
@@ -4104,7 +4092,7 @@ int EndpointAppPBX::check_external(char **errstr, class Port **port)
                *errstr = "No Call";
                return(1);
        }
-       if (!e_terminal[0])
+       if (!e_ext.number[0])
        {
                PDEBUG(DEBUG_EPOINT, "EPOINT(%d) error: we are not internal extension.\n", ea_endpoint->ep_serial);
                *errstr = "No Call";
@@ -4241,32 +4229,6 @@ void EndpointAppPBX::logmessage(struct message *message)
                                pdss1->p_m_mISDNport->portnum
                                );
                }
-               if (port->p_type == PORT_TYPE_H323_OUT)
-               {
-                       printlog("%3d  outgoing SETUP from %s='%s'%s%s%s%s to h323='%s'\n",
-                               ea_endpoint->ep_serial,
-                               (message->param.setup.callerinfo.intern[0])?"intern":"extern",
-                               (message->param.setup.callerinfo.intern[0])?e_callerinfo.intern:e_callerinfo.id,
-                               (message->param.setup.callerinfo.present==INFO_PRESENT_RESTRICTED)?" anonymous":"",
-                               (message->param.setup.redirinfo.id[0])?"redirected='":"",
-                               message->param.setup.redirinfo.id,
-                               (message->param.setup.redirinfo.id[0])?"'":"",
-                               message->param.setup.dialinginfo.number
-                               );
-               }
-               if (port->p_type == PORT_TYPE_SIP_OUT)
-               {
-                       printlog("%3d  outgoing SETUP from %s='%s'%s%s%s%s to sip='%s'\n",
-                               ea_endpoint->ep_serial,
-                               (message->param.setup.callerinfo.intern[0])?"intern":"extern",
-                               (message->param.setup.callerinfo.intern[0])?e_callerinfo.intern:e_callerinfo.id,
-                               (message->param.setup.callerinfo.present==INFO_PRESENT_RESTRICTED)?" anonymous":"",
-                               (message->param.setup.redirinfo.id[0])?"redirected='":"",
-                               message->param.setup.redirinfo.id,
-                               (message->param.setup.redirinfo.id[0])?"'":"",
-                               message->param.setup.dialinginfo.number
-                               );
-               }
                if (port->p_type == PORT_TYPE_VBOX_OUT)
                {
                        printlog("%3d  outgoing SETUP from %s='%s'%s%s%s%s to vbox='%s'\n",