Re: [asterisk-users] meetme recording with security?

2008-06-10 Thread David Backeberg
There's so such thing as privacy on a phone call, at least not in the
United States since warrantless wiretapping. Then expecting security
on a conference call, which by definition is open to many parties, is
silly.

Depending on your state (in the US), you may need to disclose when and
if you do record calls, but nobody can reasonably expect security if
they're using a public phone system in the US. You can tell the users
of a service that calls will not be recorded by the service provider,
but that's the only claim you can make in good faith.

And while you're speaking of MeetMe's ability to record or snoop,
don't forget ChanSpy(), and other features depending on if we're
talking SIP or Zaptel, etc.

-Dave

On Tue, Jun 10, 2008 at 6:16 AM, fateme fatah <[EMAIL PROTECTED]> wrote:
> Hi:
> I configured an asterisk server for conference call service but I have a
> problem now :Does asterisk have an option to secure and warranty meetme,in
> the other word,How can I play up users that their conference won't hear by
> us in spite of asterisk can record meetme ?
> I'd appreciate any help.
>
> ___
> -- 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


[asterisk-users] meetme recording with security?

2008-06-10 Thread fateme fatah
Hi:


I configured an asterisk server for conference call service but I have
a problem now :Does asterisk have an option to secure and warranty
meetme,in the other word,How can I play up users that their conference
won't hear by us in spite of asterisk can record meetme ?


I'd appreciate any help.


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

[asterisk-users] Meetme recording

2008-01-15 Thread John covici
Just set the variable ${MEETME_RECORDINGFORMAT} to the desired format
and voila its done.

Have fun.

on Tuesday 01/15/2008 Lees, James (UK)([EMAIL PROTECTED]) wrote
 > 
 > Hello,
 > 
 > Is there a way to change the format from the default?
 > 
 > 'r' - Record conference (records as ${MEETME_RECORDINGFILE} using format
 > ${MEETME_RECORDINGFORMAT}). Default filename is
 > meetme-conf-rec-${CONFNO}-${UNIQUEID} and the default format is wav. -
 > requires chan_zap.so 
 > 
 > Many thanks
 > 
 > 
 > This email and any attachments are confidential to the intended
 > recipient and may also be privileged. If you are not the intended
 > recipient please delete it from your system and notify the sender.
 > You should not copy it or use it for any purpose nor disclose or
 > distribute its contents to any other person.
 > 
 > 
 > 
 > ___
 > -- 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

-- 
Your life is like a penny.  You're going to lose it.  The question is:
How do
you spend it?

 John Covici
 [EMAIL PROTECTED]

___
-- 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] Meetme recording

2008-01-15 Thread Tony Mountifield
In article <[EMAIL PROTECTED]>,
Lees, James (UK) <[EMAIL PROTECTED]> wrote:
> 
> Hello,
> 
> Is there a way to change the format from the default?
> 
> 'r' - Record conference (records as ${MEETME_RECORDINGFILE} using format
> ${MEETME_RECORDINGFORMAT}). Default filename is
> meetme-conf-rec-${CONFNO}-${UNIQUEID} and the default format is wav. -
> requires chan_zap.so 

There's a clue in the help text you quoted. Set the channel variable
MEETME_RECORDINGFORMAT to one of the extensions shown in the output
of "show file formats", before calling MeetMe. e.g.

exten => _X.,1,Set(MEETME_RECORDINGFORMAT=gsm)
exten => _X.,n,MeetMe(${EXTEN},dr)

Hope this helps!

Cheers
Tony
-- 
Tony Mountifield
Work: [EMAIL PROTECTED] - http://www.softins.co.uk
Play: [EMAIL PROTECTED] - http://tony.mountifield.org

___
-- 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] Meetme recording

2008-01-15 Thread Gordon Henderson
On Tue, 15 Jan 2008, Lees, James (UK) wrote:

>
> Hello,
>
> Is there a way to change the format from the default?
>
> 'r' - Record conference (records as ${MEETME_RECORDINGFILE} using format
> ${MEETME_RECORDINGFORMAT}). Default filename is
> meetme-conf-rec-${CONFNO}-${UNIQUEID} and the default format is wav. -
> requires chan_zap.so

Set the channel-variable: ${MEETME_RECORDINGFORMAT}

Described in doc/README.variables.

Use the command:

CLI> show file formats

To list the formats avalable. Eg:


Format Name   Extensions
g723   g723sf g723|g723sf
ulaw   au au
slin   slnsln|raw
ilbc   iLBC   ilbc
g726   g726-16g726-16
g726   g726-24g726-24
g726   g726-32g726-32
g726   g726-40g726-40
h263   h263   h263
alaw   alaw   alaw|al
g729   g729   g729
ulaw   pcmpcm|ulaw|ul|mu
adpcm  voxvox
gsmwav49  WAV|wav49
slin   wavwav
gsmgsmgsm


Gordon

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


[asterisk-users] Meetme recording

2008-01-15 Thread Lees, James (UK)

Hello,

Is there a way to change the format from the default?

'r' - Record conference (records as ${MEETME_RECORDINGFILE} using format
${MEETME_RECORDINGFORMAT}). Default filename is
meetme-conf-rec-${CONFNO}-${UNIQUEID} and the default format is wav. -
requires chan_zap.so 

Many thanks


This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.



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


[Asterisk-Users] meetme recording very loud

2006-03-20 Thread John covici
Hi.  I tried to record a meetme conference using the r option -- using
asterisk 1.2.4 and the volume is so loud it clips.

Any way to fix this -- using the monitor the volume is generally fine.

Thanks.

-- 
Your life is like a penny.  You're going to lose it.  The question is:
How do
you spend it?

 John Covici
 [EMAIL PROTECTED]
___
--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] Meetme Recording

2006-01-23 Thread Johann


The option for MeetMe() to record(r) the conference does not seem to be working. 
 I see a CLI message that it is starting recording, however no file is ever 
created.  No error or warnings messages are seen either.


Starting recording of MeetMe Conference 100 into file 
meetme-conf-rec-100-1138045561.0.wav.


extension => 100,MeetMe(,r)

Is there something that I am missing to get this to work?


--johann
___
--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] meetme recording of one user in the conference

2005-06-07 Thread Davin O'Neill



I currently have my 
Asterisk set up to "monitor" (record) all audio in my conference 
room on meetme.  However, Asterisk will record an "in.wav" and 
"_out.wav" file for each user that joins the conference.  Is there a 
way to set my extensions.conf file up so it only records when user when 
extension 1234 calls, for example? I'm assuming that the "___in.wav" file 
from caller 1234 will capture all the audio from the other 
callers.
 
Here is my current 
configuration:
 
exten => 
2001,1,Answerexten => 2001,2,Waitexten => 
2001,3,SetVar(CALLFILENAME=${EXTEN:1}-${TIMESTAMP})exten => 
2001,4,Monitor(gsm,${CALLFILENAME})exten => 
2001,5,Meetme(2000,ps)
 
Thanks for any 
assistance you can provide!!
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] Meetme Recording

2003-12-02 Thread Girish Gopinath
Dave,

'algo' is the file in which u store the recorded conversation.
u can find this file in /var/spool/asterisk/monitor
Girish


From: "Dave Packham" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>
Subject: Re: [Asterisk-Users] Meetme Recording
Date: Tue, 02 Dec 2003 09:59:14 -0700
what do the options "algo" do in the monitor app?  I dont see that in the 
show application monitor?   is this a patch?

Dave

>>> [EMAIL PROTECTED] 12/2/2003 6:56:18 AM >>>
Try something like this:
exten => 2060,1,Answer
exten => 2060,2,Wait,1
exten => 2060,3,Monitor,wav|algo
exten => 2060,4,Meetme,1|ps
Regards,

Gus

- Original Message -
From: "Girish Gopinath" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 8:58 AM
Subject: [Asterisk-Users] Meetme Recording
> Hi,
>
> Can anybody explain me in configuring Asterisk to record a conference?
>
> Regards...
>
> Girish
>
> _
> Add zing to Hotmail. Get FREE newsletters.
> http://server1.msn.co.in/features/general/Newsletters/index.asp 
Subscribe
> now!
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
_
Add zing to Hotmail. Get FREE newsletters. 
http://server1.msn.co.in/features/general/Newsletters/index.asp Subscribe 
now!

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Meetme Recording

2003-12-02 Thread Dave Packham
man I feel dumb.  I speak spanish (i lived in BA Argentina for a few years) and I 
knew about the |filename option.   I guess i was thinking that "algo" was the options 
"a l g o" .   heh

Dave

>>> [EMAIL PROTECTED] 12/2/2003 3:23:02 PM >>>
"algo" is a file where app write a wav data. In spanish, "algo" means
"something"... :)

Gus

  -= Info about application 'Monitor' =-

[Synopsis]:
Monitor a channel

[Description]:
Monitor
Used to start monitoring a channel. The channel's input and output
voice packets are logged to files until the channel hangs up or
monitoring is stopped by the StopMonitor application.
The option string may contain the following arguments:
[file_format|[fname_base]]
file_format -- optional, if not set, defaults to "wav"
fname_base -- if set, changes the filename used to the one
specified.


- Original Message -
From: "Dave Packham" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 1:59 PM
Subject: Re: [Asterisk-Users] Meetme Recording


what do the options "algo" do in the monitor app?  I dont see that in the
show application monitor?   is this a patch?

Dave

>>> [EMAIL PROTECTED] 12/2/2003 6:56:18 AM >>>
Try something like this:

exten => 2060,1,Answer
exten => 2060,2,Wait,1
exten => 2060,3,Monitor,wav|algo
exten => 2060,4,Meetme,1|ps

Regards,

Gus

----- Original Message -
From: "Girish Gopinath" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 8:58 AM
Subject: [Asterisk-Users] Meetme Recording


> Hi,
>
> Can anybody explain me in configuring Asterisk to record a conference?
>
> Regards...
>
> Girish
>
> _
> Add zing to Hotmail. Get FREE newsletters.
> http://server1.msn.co.in/features/general/Newsletters/index.asp Subscribe
> now!
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED] 
> http://lists.digium.com/mailman/listinfo/asterisk-users 

___
Asterisk-Users mailing list
[EMAIL PROTECTED] 
http://lists.digium.com/mailman/listinfo/asterisk-users 


___
Asterisk-Users mailing list
[EMAIL PROTECTED] 
http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Meetme Recording

2003-12-02 Thread CW_ASN - Gus
"algo" is a file where app write a wav data. In spanish, "algo" means
"something"... :)

Gus

  -= Info about application 'Monitor' =-

[Synopsis]:
Monitor a channel

[Description]:
Monitor
Used to start monitoring a channel. The channel's input and output
voice packets are logged to files until the channel hangs up or
monitoring is stopped by the StopMonitor application.
The option string may contain the following arguments:
[file_format|[fname_base]]
file_format -- optional, if not set, defaults to "wav"
fname_base -- if set, changes the filename used to the one
specified.


- Original Message -
From: "Dave Packham" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 1:59 PM
Subject: Re: [Asterisk-Users] Meetme Recording


what do the options "algo" do in the monitor app?  I dont see that in the
show application monitor?   is this a patch?

Dave

>>> [EMAIL PROTECTED] 12/2/2003 6:56:18 AM >>>
Try something like this:

exten => 2060,1,Answer
exten => 2060,2,Wait,1
exten => 2060,3,Monitor,wav|algo
exten => 2060,4,Meetme,1|ps

Regards,

Gus

- Original Message -----
From: "Girish Gopinath" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 8:58 AM
Subject: [Asterisk-Users] Meetme Recording


> Hi,
>
> Can anybody explain me in configuring Asterisk to record a conference?
>
> Regards...
>
> Girish
>
> _
> Add zing to Hotmail. Get FREE newsletters.
> http://server1.msn.co.in/features/general/Newsletters/index.asp Subscribe
> now!
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Meetme Recording

2003-12-02 Thread Dave Packham
what do the options "algo" do in the monitor app?  I dont see that in the show 
application monitor?   is this a patch?

Dave

>>> [EMAIL PROTECTED] 12/2/2003 6:56:18 AM >>>
Try something like this:

exten => 2060,1,Answer
exten => 2060,2,Wait,1
exten => 2060,3,Monitor,wav|algo
exten => 2060,4,Meetme,1|ps

Regards,

Gus

- Original Message -
From: "Girish Gopinath" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 8:58 AM
Subject: [Asterisk-Users] Meetme Recording


> Hi,
>
> Can anybody explain me in configuring Asterisk to record a conference?
>
> Regards...
>
> Girish
>
> _
> Add zing to Hotmail. Get FREE newsletters.
> http://server1.msn.co.in/features/general/Newsletters/index.asp Subscribe
> now!
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED] 
> http://lists.digium.com/mailman/listinfo/asterisk-users 

___
Asterisk-Users mailing list
[EMAIL PROTECTED] 
http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Meetme Recording

2003-12-02 Thread Girish Gopinath
Hi Gus,

Thanks. It worked

regards...

Girish


From: "CW_ASN - Gus" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]>
Subject: Re: [Asterisk-Users] Meetme Recording
Date: Tue, 2 Dec 2003 10:56:18 -0300
Try something like this:

exten => 2060,1,Answer
exten => 2060,2,Wait,1
exten => 2060,3,Monitor,wav|algo
exten => 2060,4,Meetme,1|ps
Regards,

Gus

- Original Message -
From: "Girish Gopinath" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 8:58 AM
Subject: [Asterisk-Users] Meetme Recording
> Hi,
>
> Can anybody explain me in configuring Asterisk to record a conference?
>
> Regards...
>
> Girish
>
> _
> Add zing to Hotmail. Get FREE newsletters.
> http://server1.msn.co.in/features/general/Newsletters/index.asp 
Subscribe
> now!
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
_
Download cool KHNH ringtones. Add style to your mobile. 
http://server1.msn.co.in/sp03/gprs/howcani_ring.asp Simply click here.

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Meetme Recording

2003-12-02 Thread CW_ASN - Gus
Try something like this:

exten => 2060,1,Answer
exten => 2060,2,Wait,1
exten => 2060,3,Monitor,wav|algo
exten => 2060,4,Meetme,1|ps

Regards,

Gus

- Original Message -
From: "Girish Gopinath" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 8:58 AM
Subject: [Asterisk-Users] Meetme Recording


> Hi,
>
> Can anybody explain me in configuring Asterisk to record a conference?
>
> Regards...
>
> Girish
>
> _
> Add zing to Hotmail. Get FREE newsletters.
> http://server1.msn.co.in/features/general/Newsletters/index.asp Subscribe
> now!
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Meetme Recording

2003-12-02 Thread Girish Gopinath
Hi,

Can anybody explain me in configuring Asterisk to record a conference?

Regards...

Girish

_
Add zing to Hotmail. Get FREE newsletters. 
http://server1.msn.co.in/features/general/Newsletters/index.asp Subscribe 
now!

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users