Re: [asterisk-users] Macro arguments on app_queue

2009-05-07 Thread Cesar Benjamin Garcia Martinez
thanks for answer, but is not working...

with your dialplan asterisk returns chan status UNKNOWN and nothing else..

before my mail, i try to use ${MEMBERINTERFACE} and  ${MEMBERNAME} into 
myMacro , but his values are ever  of course, i put yes on 
setinterfacevar=yes, on queues.conf file, you can see:

[testt]

musicclass = default
strategy = rrmemory
timeout = 10
retry = 1
maxlen = 0
setinterfacevar=yes
setqueueentryvar=yes
setqueuevar=yes
eventwhencalled = vars
;membermacro=jabberizar,${MEMBERINTERFACE}
membermacro=jabberizar
ringinuse = no
announce-frequency = 0
announce-holdtime = no
announce-position = no

member = SIP/101,,nombre de agente 101
member = SIP/102,,nombre de agente 102
member = SIP/103,,nombre de agente 103

my purpose with this is, when an agent takes a call, execute a macro and 
that macro send a jabber message to a jabber client depending of  
${MEMBERINTERFACE}, but his value is empty, how do i can recover that 
value from myMacro??


Jim Dickenson escribió:
 Here is what I do:

 [macro-cfmc_queue_private]
 ; Due to a change around version 1.6.0.8 MEMBERINTERFACE and 
 MEMBERNAME are not set but CHANNEL has the agent we are connected with.
 ; We need to look for Agent/number is either CHANNEL or 
 MEMBERINTERFACE and it will be in one or the other
 exten = s,1,UserEvent(DidQueue,ActionID:${Local_CfMC_ActionID}  
 ${UNIQUEID}  ${CHANNEL}  ${Local_CfMC_AgentToUse}  
 ${Local_CfMC_DialInfo}  ${Local_CfMC_QueueToUse}  ${MEMBERINTERFACE} 
  ${MEMBERNAME})



 exten = queue_answer,1,Answer()
 exten = queue_answer,n,Set(CfMC_AMDValue=NotChecked)
 exten = queue_answer,n,GotoIf($[${CfMC_DoAMD}!=Yes]?NoAMD)
 exten = queue_answer,n,AMD()
 ; AMDSTATUS - MACHINE HUMAN NOTSURE HANGUP
 exten = queue_answer,n,Set(CfMC_AMDValue=${AMDSTATUS})
 exten = queue_answer,n(NoAMD),Wait(0.3)
 exten = 
 queue_answer,n,UserEvent(BeforeQueue,ActionID:${CfMC_ActionID}  
 ${UNIQUEID}  ${CHANNEL}  ${CfMC_AgentToUse}  ${CfMC_DialInfo}  
 ${CfMC_QueueToUse}  ${CfMC_AMDValue}  ${AMDCAUSE})
 exten = queue_answer,n,GotoIf($[${CfMC_AMDValue}  NotChecked]?QueueIt)
 exten = queue_answer,n,GotoIf($[${CfMC_AMDValue}!=HUMAN]?ForceHangUp)
 ; Some time around version 1.6.0.8 * hangs up a channel before it used 
 to so the channel pointed at macro cfmc_queue_private is not the same one.
 ; This causes us to be looking at a different channel thus some of our 
 variables were not there. We need to propogate them upward so do Set().
 exten = 
 queue_answer,n(QueueIt),Set(_Local_CfMC_ActionID=${CfMC_ActionID})
 exten = queue_answer,n,Set(_Local_CfMC_AgentToUse=${CfMC_AgentToUse})
 exten = queue_answer,n,Set(_Local_CfMC_DialInfo=${CfMC_DialInfo})
 exten = queue_answer,n,Set(_Local_CfMC_QueueToUse=${CfMC_QueueToUse})
 exten = 
 queue_answer,n,Queue(${CfMC_QueueToUse},cn,,,20,,cfmc_queue_private)
 ; QUEUESTATUS - TIMEOUT FULL JOINEMPTY LEAVEEMPTY JOINUNAVAIL 
 LEAVEUNAVAIL CONTINUE
 exten = queue_answer,n,UserEvent(AfterQueue,ActionID:${CfMC_ActionID} 
  ${UNIQUEID}  ${CHANNEL}  ${CfMC_AgentToUse}  ${CfMC_DialInfo}  
 ${CfMC_QueueToUse}  ${QUEUESTATUS})
 exten = queue_answer,n(ForceHangUp),Hangup()

 -- 
 Jim Dickenson
 mailto:dicken...@cfmc.com

 CfMC
 http://www.cfmc.com/



  From: ce...@codinet.com.mx
  Reply-To: Asterisk Users Mailing List - Non-Commercial Discussion
  asterisk-users@lists.digium.com
  Date: Thu, 07 May 2009 13:20:02 -0500
  To: asterisk-users@lists.digium.com
  Subject: [asterisk-users] Macro arguments on app_queue
 
  hi list, i have a question about the args of queue:
 
  when we use Queue() app, there are some arguments than can use. help from
  CLI:
 
  Queue(queuename[,options[,URL[,announceoverride[,timeout[,AGI[,macro[,gosub[,r
  ule)
 
  well.. i'm trying to identify who has taken the call on a queue, and, 
 when
  agent conected, launch a macro with some args based on who takes the call
 
  i do:
 
  exten = s,1,answer()
  exten = s,1,Queue(myQueue,,myMacro)
 
  but, there is no arguments there, right?
 
  what about use
 
 
  exten = s,1,answer()
  exten = s,1,Queue(myQueue,,myMacro,arg1)
 
  (remember that macro works like exten = 
 s,n,Macro(myMacro,myArg1,myArg2),
  that means, concatenate args after macro name, separate with comas.
 
  but
 
  Queue takes that thing after comas like other arguments OF QUEUE, not
  subargs of args. this is, my second example says,
  Queue(myQueue,,myMacro,arg1), but arg1 is taken like queue argument
  means Gosub entry...
 
  there is way of call that macro into queue, but with macro arguments ???
 
  in the queues.conf
 
  if i put
 
  membermacro=myMacro,myArgument
 
  works fine.. except that, i can't use
 
  membermacro=myMacro,${MYVAR}
 
  because ${MYVAR} is taken like String, not the var value
 
  help mee!! please
 
  sorry for my very bad english
 
  ___
  -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 
  asterisk-users mailing list
  To UNSUBSCRIBE or update 

Re: [asterisk-users] addons-1.6 not seeing installed MySQL packages

2008-05-21 Thread Cesar Benjamin Garcia Martinez
I don't know in debian, but in ubuntu is libmysqlclient15-dev

Try apt-get install libmysqlclient[TAB] for autocomplete

-Mensaje original-
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Carlos Chavez
Enviado el: Miércoles, 21 de Mayo de 2008 02:39 p.m.
Para: Asterisk Users Mailing List - Non-Commercial Discussion
Asunto: Re: [asterisk-users] addons-1.6 not seeing installed MySQL packages

Don't know about Debian but in Fedora or CentOS you need to install
mysql-devel to compile Mysql support in Asterisk-Addons

On Wed, 2008-05-21 at 14:31 -0500, JR Richardson wrote:
 Hi All,
 
 I'm poking around with 1.6, tried to compile the addon package, but it
 doesn't see mysql_config installed.
 
 I have mysql-client, mysql-common and mysql-server installed.  I'm
 running debian etch.
 
 Any suggestions?
 
 Thanks.
 
 JR
-- 
Telecomunicaciones Abiertas de México S.A. de C.V.
Carlos Chávez Prats
Director de Tecnologìa
+52-55-91169161 ext 2001


___
-- 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


___
-- 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] Running Asterisk as root

2008-05-06 Thread Cesar Benjamin Garcia Martinez
Really not.. if only you delete sh, yes, but i say make a symlink from
/bin/bash to /bin/sh

Ubuntu 7.04 and above, comes with the shell dash as sh, ubuntu 6.06 comes
with bash as sh, I got problems to start daemon, when sh points to dash..
safe_asterisk don's start...

I read 1.4.19 don't need anymore safe_asterisk, but, what about if I need
1.2.x ? or 1.4.18 ? I talk for example if I use unicall for E1 (MFCR2) when
I need that versions... someone do?

Oh!!! Now understand... I forget it... when I say about delete sh... i
forget say that is necessary, to create a symlink from /bin/bash to /bin/sh

I'm so sorry :$





-Mensaje original-
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Tzafrir Cohen
Enviado el: Lunes, 05 de Mayo de 2008 07:35 p.m.
Para: asterisk-users@lists.digium.com
Asunto: Re: [asterisk-users] Running Asterisk as root

On Mon, May 05, 2008 at 07:18:08PM -0500, Cesar Benjamin Garcia Martinez
wrote:

 Btw... delete the symlink sh - dash into /bin

BAD

THAT BREAKS THE SYSTEM

(leaves it without /bin/sh, making half the scripts fail)

-- 
   Tzafrir Cohen
icq#16849755  jabber:[EMAIL PROTECTED]
+972-50-7952406   mailto:[EMAIL PROTECTED]
http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir

___
-- 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

__ NOD32 3078 (20080506) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



___
-- 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] Running Asterisk as root

2008-05-06 Thread Cesar Benjamin Garcia Martinez
Hum. About the /var/run i do thats changes in the conf and the creation fo
/var/run into /var/lib/asterisk becouse Works :P. Yes, Ubuntu cleans al into
/var/run and that's my solution, I believe is possible touch something in
daemon for do work fine but I consider more simple make 2 folders and modify
one line

Maybe, the init.d script works well if comes from official package, I never
has installed asterisk from package, I prefer from sources.


On Mon, May 05, 2008 at 07:18:08PM -0500, Cesar Benjamin Garcia Martinez
wrote:
 Move to root:
 
 sudo -s
 
 type your passwd
 
 and as root:
 
 
 Edit the file /etc/init.d/asterisk
 
 And uncommet the two lines than sasys something like 
 
 AST_USER=asterisk
 AST_GROUP=asterisk
 
 You need to create the user asterisk on your system.
 
 And create another symlink sh to bash:
 
 cd /bin
 rm -f sh
 ln -s bash sh 

Why is that?

Debian / Ubuntu policy is that a script that is not posix sh should use
/bin/bash. Any script of Asterisk does not fit the policy and has not
bit shot^Wfixed yet?

The fix is to edit the ofending script:

#!/bin/sh  -  #!/bin/bash

 
 
 
 Edit your /etc/asterisk/asterisk.conf and replace the line:
 
 astrundir = /var/run 
 
 With:
 
 astrundir = /var/lib/asterisk/var/run

/var/run/asterisk

Everything under /var/run is deleted at boot with Ubuntu, so the init.d
script should recreate that directory and give it proper permissions if
it does not exist.

(or use the one from the Asterisk package)

 
 Create that folder:
 
 mkdir -p /var/lib/asterisk/var/run

/var/run/asterisk, as mentioned above. and it should be created in the
init.d script .

 
 and, chown to asterisk:asterisk the folders:
 
 
 /var/lib/asterisk/
 /usr/lib/asterisk/

No real need for /usr/lib/asterisk to be owned by Asterisk. It is
read-only. /usr is read-only, as you recall.

 /var/log/asterisk/
 
 chown -Rv asterisk:asterisk /var/lib/asterisk/
# chown -Rv asterisk:asterisk /usr/lib/asterisk/
 chown -Rv asterisk:asterisk /var/log/asterisk/
 
 that's all
 
 
 
 Btw... delete the symlink sh - dash into /bin

NOT

 
 Start daemon
 
 
 /etc/init.d/asterisk start

-- 
   Tzafrir Cohen
icq#16849755  jabber:[EMAIL PROTECTED]
+972-50-7952406   mailto:[EMAIL PROTECTED]
http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir

___
-- 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

__ NOD32 3078 (20080506) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



___
-- 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] Running Asterisk as root

2008-05-05 Thread Cesar Benjamin Garcia Martinez
Move to root:

sudo -s

type your passwd

and as root:


Edit the file /etc/init.d/asterisk

And uncommet the two lines than sasys something like 

AST_USER=asterisk
AST_GROUP=asterisk

You need to create the user asterisk on your system.

And create another symlink sh to bash:

cd /bin
rm -f sh
ln -s bash sh 



Edit your /etc/asterisk/asterisk.conf and replace the line:

astrundir = /var/run 

With:

astrundir = /var/lib/asterisk/var/run




Create that folder:

mkdir -p /var/lib/asterisk/var/run



and, chown to asterisk:asterisk the folders:


/var/lib/asterisk/
/usr/lib/asterisk/
/var/log/asterisk/

chown -Rv asterisk:asterisk /var/lib/asterisk/
chown -Rv asterisk:asterisk /usr/lib/asterisk/
chown -Rv asterisk:asterisk /var/log/asterisk/

that's all



Btw... delete the symlink sh - dash into /bin

Start daemon


/etc/init.d/asterisk start



-Mensaje original-
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Christian
Enviado el: Lunes, 05 de Mayo de 2008 07:00 p.m.
Para: asterisk-users@lists.digium.com
Asunto: [asterisk-users] Running Asterisk as root

Hi all,
I have seen discussions on this earlier on, but just want to hear some quick
thoughts.
I am running v1.6 of Asterisk on my Ubuntu installation, I did make config
to make it run at boot. Since I've got a firewall and don't have any other
servers running I am not worried. I have been htinking about running
Asterisk as a seperat user, but haven't done that yet.
Everything is working fine.
What do you think?
Thanks,
Christian


___
-- 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

__ NOD32 3076 (20080505) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



___
-- 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] Running Asterisk as root

2008-05-05 Thread Cesar Benjamin Garcia Martinez
Hum, sorry, i guess y type wrong about chowns, this is the right:

chown -Rv asterisk:asterisk /var/lib/asterisk/ 
chown -Rv asterisk:asterisk /usr/lib/asterisk/ 
chown -Rv asterisk:asterisk /var/log/asterisk/









-Mensaje original-
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Cesar Benjamin
Garcia Martinez
Enviado el: Lunes, 05 de Mayo de 2008 07:18 p.m.
Para: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Asunto: Re: [asterisk-users] Running Asterisk as root

Move to root:

sudo -s

type your passwd

and as root:


Edit the file /etc/init.d/asterisk

And uncommet the two lines than sasys something like 

AST_USER=asterisk
AST_GROUP=asterisk

You need to create the user asterisk on your system.

And create another symlink sh to bash:

cd /bin
rm -f sh
ln -s bash sh 



Edit your /etc/asterisk/asterisk.conf and replace the line:

astrundir = /var/run 

With:

astrundir = /var/lib/asterisk/var/run




Create that folder:

mkdir -p /var/lib/asterisk/var/run



and, chown to asterisk:asterisk the folders:


/var/lib/asterisk/
/usr/lib/asterisk/
/var/log/asterisk/

chown -Rv asterisk:asterisk /var/lib/asterisk/
chown -Rv asterisk:asterisk /usr/lib/asterisk/
chown -Rv asterisk:asterisk /var/log/asterisk/

that's all



Btw... delete the symlink sh - dash into /bin

Start daemon


/etc/init.d/asterisk start



-Mensaje original-
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Christian
Enviado el: Lunes, 05 de Mayo de 2008 07:00 p.m.
Para: asterisk-users@lists.digium.com
Asunto: [asterisk-users] Running Asterisk as root

Hi all,
I have seen discussions on this earlier on, but just want to hear some quick
thoughts.
I am running v1.6 of Asterisk on my Ubuntu installation, I did make config
to make it run at boot. Since I've got a firewall and don't have any other
servers running I am not worried. I have been htinking about running
Asterisk as a seperat user, but haven't done that yet.
Everything is working fine.
What do you think?
Thanks,
Christian


___
-- 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

__ NOD32 3076 (20080505) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



___
-- 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

__ NOD32 3076 (20080505) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



___
-- 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] Enterprise or Fedora?

2008-02-05 Thread Cesar Benjamin Garcia Martinez
Oh, yes, asterisk is in universe, but i prefer apt-get  build-dep asterisk

And then compile from current source, not the package in universe

-Mensaje original-
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Tzafrir Cohen
Enviado el: Sábado, 02 de Febrero de 2008 06:17 p.m.
Para: asterisk-users@lists.digium.com
Asunto: Re: [asterisk-users] Enterprise or Fedora?

On Sat, Feb 02, 2008 at 05:13:39PM -0600, [EMAIL PROTECTED] wrote:
 Ubuntu server for me please
 
 simply, is better...
 
 install.
 
 then activate universe and multiverse repositories
 
 sudo apt-get update
 
 sudo apt-get upgrade
 
 sudo apt-get build-dep asterisk
 
 and then...
 
 tar xvfz
 ./configure
 make
 make install
 ...
 
 
 is very very easy and clean, and IMHO i guess is better SO Ubuntu 
 than any other RHEL based distro...

Mind you, asterisk is in the ubuntu universe (rather than main) archive.
As such, it also has some other dependencies in universe. Specifically
(looking at the current Hardy) package:

  libc-client2007-dev
  libiksemel-dev
  libopenh323-dev
  libpri-dev
  libradiusclient-ng-dev
  libtonezone-dev
  libvpb-dev
  zaptel-source

As a rule, the universe packages there get much less attention, and
don't necessarily get regular security updates.

-- 
   Tzafrir Cohen
icq#16849755  jabber:[EMAIL PROTECTED]
+972-50-7952406   mailto:[EMAIL PROTECTED]
http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir

___
-- 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

__ Information from ESET Smart Security, version of virus signature
database 2849 (20080205) __

The message was checked by ESET Smart Security.

http://www.eset.com

 

__ Information from ESET Smart Security, version of virus signature
database 2851 (20080205) __

The message was checked by ESET Smart Security.

http://www.eset.com
 


___
-- 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] RXFAX/TXFAX

2007-05-05 Thread Cesar Benjamin Garcia Martinez
But i want to do with a TDM400 or winh E1, using rxfax app (or something like 
this) from the dialplan, without hylafax or esoteric codes. 

My question is becouse i read than 1.4 supports T.38, and then should receive 
fax i guess...

There is not something like app_rxfax / app_txfax ???



-Mensaje original-
De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Per Jessen
Enviado el: sábado, 05 de mayo de 2007 2:30
Para: asterisk-users@lists.digium.com
Asunto: Re: [asterisk-users] RXFAX/TXFAX

Cesar Benjamin Garcia Martinez wrote:

 Somebody can tell me, what way i can send/receive faxes with asterisk
 1.4???
[snip]
 How to i can send/receive fax to/from PSTN on asterisk 1.4 ?

Check out a very recent thread on just that subject.  Or go study how to
use iaxmodem and hylafax.



/Per Jessen, Zürich

-- 
ENIDAN Technologies GmbH - managed email security. 
Starting at SFr1/month/user - http://www.spamchek.ch/

___
--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

__ Informacin de NOD32, revisin 2243 (20070505) __

Este mensaje ha sido analizado con  NOD32 antivirus system
http://www.nod32.com


___
--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] TDM400P usada?

2007-05-05 Thread Cesar Benjamin Garcia Martinez
Bueno, no esta en chile, yo no estoy en chile, pero hablo español, soy de
mexico, asi que en parte tienes razón, pero tb creo que deberías haber
puesto de donde eres.

 

De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Rodrigo
Mercado
Enviado el: sábado, 05 de mayo de 2007 12:38
Para: Asterisk Users Mailing List - Non-Commercial Discussion
Asunto: Re: [asterisk-users] TDM400P usada?

 

Chile.

 

No hay listas en español, y si lo enviè en español es justamente porque si
alguien no lo habla no puede estar en CHILE, de todas formas muchas gracias
por la amabilidad de traducir mi correo.

 

saludos,

 

bye bye 

 

On 5/5/07, Tom Rymes [EMAIL PROTECTED] wrote: 

On May 5, 2007, at 12:06 PM, Rodrigo Mercado wrote:

 Alguien tiene una TDM400P con modulo FXS usada a la venta ??, 
 obviamente a precio de tarjeta usada...


 saludos,


 Rodrigo Mercado S.

For anyone who is not a Spanish speaker, Rodrigo is looking for a
used TDM400P card with FXS modules. He is expecting a price that 
would correspond with a used card. (In other words, cheap)

Rodrigo:

1.) ¿Donde estás? ¿Cómo podria alguien dar un precio sin saber donde
tendria que mandarlo? ¿España? ¿Puerto Rico? ¿Argentina?
2.) Si no hablas Inglés, seria mejor buscar una lista de Asterisk en 
Español, porque la mayoria de las personas aqui no hablen Español.

Tom___
--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

 

___
--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


[asterisk-users] RXFAX/TXFAX

2007-05-04 Thread Cesar Benjamin Garcia Martinez
Hi all

Somebody can tell me, what way i can send/receive faxes with asterisk 1.4???

In Asterisk 1.2.x i have use the spandsp lib and app_rxfax / app_txfax from
soft-switch.org for add T.38 support to asterisk and to have that apps.

I have read than asterisk 1.4 support natively T.38, but what is the way to
do that?? I can't see some app or something for do that, i believe don't
need that apps on 1.4, but, there aren't nothing of that? Or i can see? 

How to i can send/receive fax to/from PSTN on asterisk 1.4 ?

-Mensaje original-
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Yuan LIU
Enviado el: viernes, 04 de mayo de 2007 18:41
Para: asterisk-users@lists.digium.com
Asunto: Re: Re[2]: [asterisk-users] Starting Asterisk on Ubuntu 7.04

From: James Texter [EMAIL PROTECTED]
Date: Fri, 04 May 2007 12:28:39 -0500

If you do make config when compiling zaptel and asterisk, it should
put the script in /etc/init.d, and add the relevant entries to the
various start levels.

Not with 1.4 at least.  makefile is not looking in the right place and not 
the right script.

Yuan Liu

Thanks,

James Texter

On Fri, 2007-05-04 at 18:44 +0200, Christian wrote:

  Hi,
  I have already done:
  apt-get build-dep asterisk and then installed libpri, zaptel and 
asterisk from the latest sources.
  So what should i do then? New to Ubuntu.
  many thanks,
  Christian
 
 
  On 2007-05-04 at 17:00 Tzafrir Cohen wrote:
 
  On Fri, May 04, 2007 at 02:04:55PM +0200, Christian wrote:
   Hi all,
   Could someone please tell me how to make Asterisk start at boot on
  Ubuntu Feisty 7.04?
   Many thanks,
   Christian
  
  
apt-get install asterisk
  
  Look at the init.d scripts.
  Note that in Ubuntu, subdirectories under /var/run are deleted at boot,
  and hence that script generates /var/run/asterisk (with proper
  ownership) at boot time.
  
  --
 Tzafrir Cohen
  icq#16849755jabber:[EMAIL PROTECTED]
  +972-50-7952406   mailto:[EMAIL PROTECTED]
  http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir


___
--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

__ Información de NOD32, revisión 2241 (20070505) __

Este mensaje ha sido analizado con  NOD32 antivirus system
http://www.nod32.com


___
--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