[asterisk-users] Multiple Agent Login

2009-03-11 Thread Humberto Figuera
Hi,

on file agents.conf use the option multiplelogin=no

-- 
Humberto Figuera - Using Linux 2.6.26
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Help with MFC/R2

2008-09-18 Thread Humberto Figuera
Hi Dae,

In zaptel.conf change ccs for cas and comment dchan line, for example:

span=1,1,0,cas,hdb3
cas=1-15:1101
#dchan=16
cas=17-31:1101

-- 
Humberto Figuera - Using Linux 2.6.22
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA 37AD 3364 01D1 74CA 0603

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2008 - September 22 - 25 Phoenix, Arizona
Register Now: http://www.astricon.net

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Unicall/R2 for Asterisk 1.4 Available for TESTING

2007-06-04 Thread Humberto Figuera

HI Tobias,

look in www.soft-switch.org/unicall/unicall/index.html ;p

--
Humberto Figuera - Using Linux 2.6.20
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Can asterisk record the duration of users putting on hold?

2007-04-26 Thread Humberto Figuera

Hi Xue Liangliang,

If you use queue's then look in queue_log

http://www.voip-info.org/wiki/index.php?page=Asterisk+log+queue_log

the COMPLETEAGENT and COMPLETECALLER events have this information.

COMPLETEAGENT(holdtime|calltime|origposition)
The caller was connected to an agent, and the call was terminated normally
by the *agent*. The caller's hold time and the length of the call are both
recorded. The caller's original position in the queue is recorded in
origposition.

COMPLETECALLER(holdtime|calltime|origposition)
The caller was connected to an agent, and the call was terminated normally
by the *caller*. The caller's hold time and the length of the call are both
recorded. The caller's original position in the queue is recorded in
origposition.


--
Humberto Figuera - Using Linux 2.6.20
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Unicall/R2 for Asterisk 1.4 Available for TESTING

2007-04-18 Thread Humberto Figuera

Hi Moises,

the Asterisk SVN-branch-1.4-r60989 make a change in the
ast_channel_alloc function:

This is a big improvement over the current CDR fixes. It may still
need refinement, but this won't have as many folks bothered.

here the patch for chan_unicall.c ;p

--
Humberto Figuera - Using Linux 2.6.20
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
--- chan_unicall.c.orig	2007-04-18 03:32:17.0 -0400
+++ chan_unicall.c	2007-04-18 03:32:26.0 -0400
@@ -2485,7 +2485,7 @@
 }
 while (x  3);
 
-if ( ( tmp = ast_channel_alloc(0, state, 0, 0, chan_name) ) == NULL)
+if ( ( tmp = ast_channel_alloc(0, state, 0, 0, i-accountcode, i-exten, i-context, i-amaflags, chan_name) ) == NULL)
 {
 ast_log(LOG_WARNING, Unable to allocate channel structure\n);
 return  NULL;
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Unicall/R2 for Asterisk 1.4 Available for TESTING

2007-04-18 Thread Humberto Figuera

Hi Moises,

the Asterisk SVN-branch-1.4-r60989 make a change in the
ast_channel_alloc function:

This is a big improvement over the current CDR fixes. It may still
need refinement, but this won't have as many folks bothered.

here the patch for chan_unicall.c ;p

--- chan_unicall.c.orig 2007-04-18 03:32:17.0 -0400
+++ chan_unicall.c  2007-04-18 03:32:26.0 -0400
@@ -2485,7 +2485,7 @@
}
while (x  3);

-if ( ( tmp = ast_channel_alloc(0, state, 0, 0, chan_name) ) == NULL)
+if ( ( tmp = ast_channel_alloc(0, state, 0, 0, i-accountcode,
i-exten, i-context, i-amaflags, chan_name) ) == NULL)
{
ast_log(LOG_WARNING, Unable to allocate channel structure\n);
return  NULL;

--
Humberto Figuera - Using Linux 2.6.20
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Prompt for a PIN number to make long distance call?

2007-04-07 Thread Humberto Figuera

Hi J French,

try with DISA ;p

http://www.voip-info.org/wiki/view/Asterisk+cmd+DISA

--
Humberto Figuera - Using Linux 2.6.20
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] postgres and asterisk

2007-01-09 Thread Humberto Figuera

Hi O.Youssef,

if you asterisk version is 1.2.X

edit apps/Makefile

and discomment the line that contain 'app_sql_postgres.so':

#
# Obsolete things...
#
APPS+=app_sql_postgres.so
#APPS+=app_sql_odbc.so

save

if you use debian:

aptitude install libpq-dev

and compile again

I hope this be helpfull ;p

--
Humberto Figuera - Using Linux 2.6.18
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Sangoma A101 with Unicall

2006-12-22 Thread Humberto Figuera

Hi Carlos,

please delete the line dchan=16.

dchan is use for ccs framing.

You can use the follow:

#
span=1,0,0,cas,hdb3
cas=1-15:1101
cas=17-31:1101
#

i hope this help you ;p

--
Humberto Figuera - Using Linux 2.6.18
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Problem loading unicall

2006-12-06 Thread Humberto Figuera

http://soft-switch.org/downloads/spandsp/spandsp-0.0.3pre22.tgz
http://soft-switch.org/downloads/unicall/unicall-0.0.3pre9/
http://ftp.digium.com/pub/asterisk/releases/asterisk-1.2.13.tar.gz

--
Humberto Figuera - Using Linux 2.6.17
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] question on tx_fax install for asterisk 1.4

2006-12-05 Thread Humberto Figuera

http://soft-switch.org/downloads/snapshots/spandsp/

;p

--
Humberto Figuera - Using Linux 2.6.17
Usuario GNU/Linux 369709
Caracas - Venezuela
GPG Key Fingerprint = 5AAC DF0C 00F4 2834 28BA  37AD 3364 01D1 74CA 0603
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users