Re: [asterisk-users] Desktop integration

2006-11-19 Thread kjcsb
http://activa.sourceforge.net/ does this.
  - Original Message - 
  From: Ondrej Valousek 
  To: Asterisk Users Mailing List - Non-Commercial Discussion 
  Sent: Tuesday, November 14, 2006 12:28 AM
  Subject: [asterisk-users] Desktop integration


  Hi all,

  I am interested in integrating my telephone system (I am using hardphones and 
Asterisk) with my desktop - something like this:

  1. someone sends me his/her phone number via email/icq
  2. I cut/paste the number in some application/web page (?)
  3. my phone starts ringing and when I pick it up I will get connected with 
the remote party.



___
--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] Desktop integration

2006-11-19 Thread Joe Dennick

SugarCRM also integrates with Asterisk.

kjcsb wrote:


http://activa.sourceforge.net/ does this.

- Original Message -
*From:* Ondrej Valousek mailto:[EMAIL PROTECTED]
*To:* Asterisk Users Mailing List - Non-Commercial Discussion
mailto:asterisk-users@lists.digium.com
*Sent:* Tuesday, November 14, 2006 12:28 AM
*Subject:* [asterisk-users] Desktop integration

Hi all,

I am interested in integrating my telephone system (I am using
hardphones and Asterisk) with my desktop - something like this:

1. someone sends me his/her phone number via email/icq
2. I cut/paste the number in some application/web page (?)
3. my phone starts ringing and when I pick it up I will get
connected with the remote party.

 
 




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


Re: [asterisk-users] Desktop integration

2006-11-19 Thread Michiel van Baak
On 12:46, Sun 19 Nov 06, Joe Dennick wrote:
 SugarCRM also integrates with Asterisk.

I keep hearing this but here in .nl noone can give me any
demo or installation with it.

advertisement mode
Covide (http://www.covide.net) on the other hand has it up
and running and you can find everything you need in its
sources (sf.net)
/advertisement mode

-- 

Michiel van Baak
[EMAIL PROTECTED]
http://michiel.vanbaak.eu
GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x71C946BD

Why is it drug addicts and computer afficionados are both called 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


Re: [asterisk-users] Desktop integration

2006-11-19 Thread Joe Dennick
[EMAIL PROTECTED] has it built-in.  If you worship the Google gods, you'll 
find documents describing how to integrate stand-alone installations of 
SugarCRM and Asterisk...



Michiel van Baak wrote:


On 12:46, Sun 19 Nov 06, Joe Dennick wrote:
 


SugarCRM also integrates with Asterisk.
   



I keep hearing this but here in .nl noone can give me any
demo or installation with it.

advertisement mode
Covide (http://www.covide.net) on the other hand has it up
and running and you can find everything you need in its
sources (sf.net)
/advertisement mode

 


___
--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] Desktop integration

2006-11-14 Thread Tim Panton


On 13 Nov 2006, at 13:15, Ondrej Valousek wrote:


Hi Dean,

I will check that site - thanks for the hint.
The biggest problem I see with authentication and I do not think  
mexuar could help me here (and I am definitely going to pay $2000  
for it :-)

But it is another story...


Well, it could, one of the 2 ways we advise people to do call back is  
using the softphone to dial an extension
which then creates the required call file - without ever answering.  
So essentially we are leveraging the
softphone user credentials to get restricted access to asterisk's  
spool directory.


Anyhow, a full web-based softphone is overkill for your app unless  
you have another use for it

on the same asterisk server,  the $2000 covers all the users on a single
asterisk server. So with 100 users it would be competitive with snap.

The security thing is tricky, the best place to put it is in the web- 
server, then put a program
 in the cgi-bin and protect it with the web server's access control.  
This means that

a) you don't need to run apache on your asterisk system
	b) you can restrict access to the manager port to just the  
webserver, not give it

to all and sundry.

I've written a java program (using asterisk-java) that invokes the  
originate method on the manager API.
which can be put in an CGI. If anyone is interested I can clean it up  
and post it somewhere.



Tim.

Tim Panton

www.mexuar.net
www.westhawk.co.uk/



___
--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] Desktop integration

2006-11-14 Thread Michał Niklas

Ondrej Valousek napisał(a):

Hello Michal,

Thank you for the hint!
Can I ask you for your script so I have some idea how it works?
I have apache already running on my * box.



OK.  Python code for my script is below.  Read it while you must prepare 
it to your

environment (prefixes, cellular phones recognition etc.).
Some strings and comments are in Polish, but most names are in English.
You also have to create dir: /var/spool/asterisk/outgoing_ht/
and do some chmod

code
#!/usr/bin/python
# -*- coding: cp1250 -*-
__version__ = '$Id: make_call.py 209 2006-11-03 09:47:05Z mn $'

# Make asterisk call file connecting both lines
# parameters:
# tel1 - phone nr 1
# tel2 - phone nr 2
# phones with technology prefix like 'SIP/Michal.Niklas' are not changed
# phones with numbers are changed to Zap or CAPI channel

# autor: Michal Niklas

import sys
import time
import re
import cgi
import os

BAN_PAID_NUMBERS = 1
START = time.time()

def write_debug(s):
  write s to stderr
  t = int((time.time() - START) * 1000)
  sys.stderr.write(%d %s\n % (t, s))
  sys.stderr.flush()


# asterisk callfile looks like:
CALL_FILE_CONTENT = 
# w Channel wpisujemy pierwszy numer (nasz)
#Channel: CAPI/39:41
Channel: %s
Callerid: %s
MaxRetries: 0
RetryTime: 0
WaitTime: 45
Context: call_out
Extension: %s
Priority: 1
SetVar: phone=%s
SetVar: digits=%s
SetVar: agi_callerid=%s
SetVar: orig_call=
SetVar: kntrh=
SetVar: kntrh_grp=
SetVar: destination=%s


OK_HTML = Content-Type: text/html

html
head
titleSCT-10 - ok/title
/head
body
Centrala SCT-10: Zainicjowano dzwonienie ...
/body
/html


ERR_HTML = Content-Type: text/html

html
head
titleSCT-10 - błąd/title
/head
body
Centrala SCT-10: Nie można zainicjowac dzwonienia!br
%s
/body
/html


PHONEDICT_LOCAL = {'canal': 'Zap/g0', 'prefix': '091'}
PHONEDICT_OUTSIDE = {'canal': 'Zap/g0', 'prefix': '0'}
PHONEDICT_CELLURAL = {'canal': 'Zap/g0', 'prefix': '0'}
PHONEDICT_ABROAD = {'canal': 'Zap/g0', 'prefix': '00'}
PHONEDICT_INSIDE = {'canal': 'SIP', 'prefix': ''}
PHONEDICT_EMPTY = {'canal': '', 'prefix': ''}
ALARM_PREFIX = 'alarm:'
PHONEDICT_ALARM = {'canal': 'Zap/g0', 'prefix': ''}


class PhoneException(Exception):
  cannot correct phone number exception
  pass


PREFIXES = ('iax2/', 'iax/', 'sip/', 'zap/', 'h323/', 'oh323/', 'capi/')
CELLURAL_PREFIXES = ('50', '51', '60', '66', '69', '88')

def is_prefixed(phone_nr):
  czy podany numer ma prefix
  for prefix in PREFIXES:
  if phone_nr.startswith(prefix):
  return 1
  return 0


def correct_nr(phone_nr):
  corrects number -- remove spaces, add prefix etc
 return numbers divided by 'w'
  
  w = ''
  nr = phone_nr.lower()
  phone_dict = PHONEDICT_EMPTY
  if is_prefixed(nr):
  return (phone_nr, '')
  if nr.startswith(ALARM_PREFIX):
  phone_dict = PHONEDICT_ALARM
  nr = nr[len(ALARM_PREFIX):]
  else:
  nr = re.sub('^\D*', '', nr)
  # szukamy nr wewnetrznego
  i = nr.rfind('w')
  if i  0:
  w = nr[i + 1:]
  w = re.sub('\D', '', w)
  nr = nr[:i - 1]
  # remove not digits
  if nr.startswith('+48'):
  nr = nr[3:]
  nr = re.sub('\D', '', nr)
  nr = nr.lstrip('0')
  # usuwamy kod kraju
  if len(nr)  9:
  if nr.startswith('48'):
  nr = nr[2:]
  #sprawdzamy, czy wewnetrzny
  if len(nr)  0 and len(nr)  3:
  nr = %03d % (int(nr))
  # 
  # klasyfikujemy numer
  # 
  if len(nr) == 0:
  raise PhoneException, 'Numer nie nadaje sie do normalizacji: 
%s, wychodzi pusty' % (phone_nr)

  elif len(nr) == 3 and (nr.startswith('9') or nr == '112'):
  phone_dict = PHONEDICT_ALARM
  elif len(nr)  4:
  phone_dict = PHONEDICT_INSIDE
  elif len(nr) == 4 and nr.startswith('9'):
  phone_dict = PHONEDICT_ALARM
  elif len(nr) == 6 and nr.startswith('22'):
  phone_dict = PHONEDICT_OUTSIDE
  elif len(nr) == 6 and nr.startswith('118'):
  # 
http://www.stacjonarny.com/modules.php?op=modloadname=Newsfile=articlesid=396mode=threadorder=0thold=0 


  phone_dict = PHONEDICT_ALARM
  elif len(nr) == 7:
  phone_dict = PHONEDICT_LOCAL
  elif len(nr) == 9:
  if BAN_PAID_NUMBERS:
  if nr.startswith('70'):
  raise PhoneException, 'Numer zabroniony: %s' % 
(phone_nr)

  elif nr.startswith('300'):
  raise PhoneException, 'Numer zabroniony: %s' % 
(phone_nr)

  prefix = nr[:2]
  if prefix in CELLURAL_PREFIXES:
  phone_dict = PHONEDICT_CELLURAL
  else:
  phone_dict = PHONEDICT_OUTSIDE
  elif len(nr)  9:
  phone_dict = PHONEDICT_ABROAD
  #raise PhoneException, 'Numer zagraniczne nie sa obslugiwane: 
%s' % (phone_nr)

  else:
  raise PhoneException, 'Numer nie nadaje sie do normalizacji: 
%s - %s' % (phone_nr, nr)

  return (%s/%s%s % (phone_dict['canal'], phone_dict['prefix'], nr), w)



class 

RE: [asterisk-users] Desktop integration

2006-11-14 Thread Senad Jordanovic
Tim Panton wrote:
 On 13 Nov 2006, at 13:15, Ondrej Valousek wrote:
 
 Hi Dean,
 
 I will check that site - thanks for the hint.
 The biggest problem I see with authentication and I do not think
 mexuar could help me here (and I am definitely going to pay $2000 for
 it :-) But it is another story...

Hi

I have not had time to read this post from beginning.
However maybe a FREE  or partner copy of outCALL may suit your needs.


More details at: www.bicomsystems.com


Senad


___
--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] Desktop integration

2006-11-14 Thread Dovid B


snip
I've written a java program (using asterisk-java) that invokes the 
originate method on the manager API.
which can be put in an CGI. If anyone is interested I can clean it up  and 
post it somewhere.

/snip

I am sure ther are a lot of interested users. Why not put it up on the wiki 
? 



___
--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] Desktop integration

2006-11-14 Thread Matthew Rubenstein
Does your class handle the reputed failure of the Manager interface to
originate some calls under heavy load? Does anyone know if that
unreliable feature is fixed in newer Asterisk versions, or in 1.4?


On Tue, 2006-11-14 at 18:47 -0700,
[EMAIL PROTECTED] wrote:
 Date: Wed, 15 Nov 2006 03:24:20 +0200
 From: Dovid B [EMAIL PROTECTED]
 Subject: Re: [asterisk-users] Desktop integration
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 asterisk-users@lists.digium.com
 Message-ID: [EMAIL PROTECTED]
 Content-Type: text/plain; format=flowed; charset=iso-8859-1;
 reply-type=response
 
 
 snip
  I've written a java program (using asterisk-java) that invokes the 
  originate method on the manager API.
  which can be put in an CGI. If anyone is interested I can clean it
 up  and 
  post it somewhere.
 /snip
 
 I am sure ther are a lot of interested users. Why not put it up on the
 wiki 
 ?  
-- 

(C) Matthew Rubenstein

___
--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] Desktop integration

2006-11-13 Thread Ondrej Valousek




Hi all,

I am interested in integrating my telephone system (I am using
hardphones and Asterisk) with my desktop - something like this:

1. someone sends me his/her phone number via email/icq
2. I cut/paste the number in some application/web page (?)
3. my phone starts ringing and when I pick it up I will get connected
with the remote party.

Now I know I have read some discussion about this possibility but I can
not recall where.
Many thanks for any point.

Ondrej



___
--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] Desktop integration

2006-11-13 Thread Vij
Basically here is what the application you need has to do:1. take the number you paste2. make a call file 3. drop it in the outgoing spool directory of asteriskThis could be easily done in php - just one page. Donno if any app already exists (have heard of many, but not sure if they come alone or as part of other apps). But writing one should not take much time.
-VijOn 11/13/06, Ondrej Valousek [EMAIL PROTECTED] wrote:



  
  


Hi all,

I am interested in integrating my telephone system (I am using
hardphones and Asterisk) with my desktop - something like this:

1. someone sends me his/her phone number via email/icq
2. I cut/paste the number in some application/web page (?)
3. my phone starts ringing and when I pick it up I will get connected
with the remote party.

Now I know I have read some discussion about this possibility but I can
not recall where.
Many thanks for any point.

Ondrej




___--Bandwidth and Colocation provided by Easynews.com --
asterisk-users mailing listTo UNSUBSCRIBE or update options visit:  http://lists.digium.com/mailman/listinfo/asterisk-users
-- Where there is a willI want my name in it
___
--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] Desktop integration

2006-11-13 Thread Michał Niklas

Ondrej Valousek napisał(a):

Hi all,

I am interested in integrating my telephone system (I am using 
hardphones and Asterisk) with my desktop - something like this:


1. someone sends me his/her phone number via email/icq
2. I cut/paste the number in some application/web page (?)
3. my phone starts ringing and when I pick it up I will get connected 
with the remote party.

I have done this by simple CGI program that creates call file.
I put asterisk and HTTP server (apache) on the same machine.
In CGI program I also do some number normalization, so if user
sends me +48 91 123 45 67 I remove spaces and other special
chars and add Zap/g1/ prefix.

Be aware of file permissions and do not create call file on place,
but rather create it in tmp directory and than move it to final spool 
directory.


Regards,
Michał Niklas

___
--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] Desktop integration

2006-11-13 Thread Ondrej Valousek




Hello Michal,

Thank you for the hint!
Can I ask you for your script so I have some idea how it works?
I have apache already running on my * box.

Thank you,
Ondrej

Michał Niklas wrote:
Ondrej
Valousek napisał(a):
  
  Hi all,


I am interested in integrating my telephone system (I am using
hardphones and Asterisk) with my desktop - something like this:


1. someone sends me his/her phone number via email/icq

2. I cut/paste the number in some application/web page (?)

3. my phone starts ringing and when I pick it up I will get connected
with the remote party.

  
I have done this by simple CGI program that creates call file.
  
I put asterisk and HTTP server (apache) on the same machine.
  
In CGI program I also do some number normalization, so if user
  
sends me "+48 91 123 45 67" I remove spaces and other special
  
chars and add "Zap/g1/" prefix.
  
  
Be aware of file permissions and do not create call file "on place",
  
but rather create it in tmp directory and than move it to final spool
directory.
  
  
Regards,
  
Michał Niklas
  
  
___
  
--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


Re: FW: [asterisk-users] Desktop integration

2006-11-13 Thread Ondrej Valousek




Hi Dean,

I will check that site - thanks for the hint.
The biggest problem I see with authentication and I do not think mexuar
could help me here (and I am definitely going to pay $2000 for it :-)
But it is another story...

Thank you!
Ondrej

Dean Collins wrote:

  
  


  
  
  
  Ondrej,
  You could do
it using Mexuar Corraleta but
this is a commercial application for Asterisk (US$2,000)
  http://www.mexuar.com/products_sdk.shtml
  http://www.mexuar.com/downloads/Press/CorraletaLaunchPR-1-branded.pdf
   
  However it
has a whole heap more
functionality than what you are looking for.
   
  If you just
want to do 2 legged outbound
calls check out ‘call files’ on www.voip-info.org
  
   
   
  
   
  Cheers,
   
  Dean
   
  
  
  
  
  
  From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Ondrej Valousek
  Sent: Monday, 13
November 2006
6:29 AM
  To: Asterisk Users Mailing List - Non-Commercial Discussion
  Subject:
[asterisk-users] Desktop
integration
  
   
  Hi all,
  
I am interested in integrating my telephone system (I am using
hardphones and
Asterisk) with my desktop - something like this:
  
1. someone sends me his/her phone number via email/icq
2. I cut/paste the number in some application/web page (?)
3. my phone starts ringing and when I pick it up I will get connected
with the
remote party.
  
Now I know I have read some discussion about this possibility but I can
not
recall where.
Many thanks for any point.
  
Ondrej
  
  
  

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


Re: FW: [asterisk-users] Desktop integration

2006-11-13 Thread mitcheloc

Snap will do this for you. (Check my signature)

On 11/13/06, Ondrej Valousek [EMAIL PROTECTED] wrote:


 Hi Dean,

 I will check that site - thanks for the hint.
 The biggest problem I see with authentication and I do not think mexuar
could help me here (and I am definitely going to pay $2000 for it :-)
 But it is another story...

 Thank you!
 Ondrej

 Dean Collins wrote:



Ondrej,

You could do it using Mexuar Corraleta but this is a commercial application
for Asterisk (US$2,000)

http://www.mexuar.com/products_sdk.shtml

http://www.mexuar.com/downloads/Press/CorraletaLaunchPR-1-branded.pdf



However it has a whole heap more functionality than what you are looking
for.



If you just want to do 2 legged outbound calls check out 'call files' on
www.voip-info.org








Cheers,



Dean




 


From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Ondrej Valousek
 Sent: Monday, 13 November 2006 6:29 AM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: [asterisk-users] Desktop integration



Hi all,

 I am interested in integrating my telephone system (I am using hardphones
and Asterisk) with my desktop - something like this:

 1. someone sends me his/her phone number via email/icq
 2. I cut/paste the number in some application/web page (?)
 3. my phone starts ringing and when I pick it up I will get connected with
the remote party.

 Now I know I have read some discussion about this possibility but I can not
recall where.
 Many thanks for any point.

 Ondrej 

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






--

Mitchel Constantin
Snap - A desktop user interface for Asterisk
www.snapanumber.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: FW: [asterisk-users] Desktop integration

2006-11-13 Thread Tom Vile

asteriskextras.com has a FREE click to call script that is very popular.

On 11/13/06, mitcheloc [EMAIL PROTECTED] wrote:

Snap will do this for you. (Check my signature)

On 11/13/06, Ondrej Valousek [EMAIL PROTECTED] wrote:

  Hi Dean,

  I will check that site - thanks for the hint.
  The biggest problem I see with authentication and I do not think mexuar
 could help me here (and I am definitely going to pay $2000 for it :-)
  But it is another story...

  Thank you!
  Ondrej

  Dean Collins wrote:



 Ondrej,

 You could do it using Mexuar Corraleta but this is a commercial application
 for Asterisk (US$2,000)

 http://www.mexuar.com/products_sdk.shtml

 http://www.mexuar.com/downloads/Press/CorraletaLaunchPR-1-branded.pdf



 However it has a whole heap more functionality than what you are looking
 for.



 If you just want to do 2 legged outbound calls check out 'call files' on
 www.voip-info.org








 Cheers,



 Dean




  


 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Ondrej Valousek
  Sent: Monday, 13 November 2006 6:29 AM
  To: Asterisk Users Mailing List - Non-Commercial Discussion
  Subject: [asterisk-users] Desktop integration



 Hi all,

  I am interested in integrating my telephone system (I am using hardphones
 and Asterisk) with my desktop - something like this:

  1. someone sends me his/her phone number via email/icq
  2. I cut/paste the number in some application/web page (?)
  3. my phone starts ringing and when I pick it up I will get connected with
 the remote party.

  Now I know I have read some discussion about this possibility but I can not
 recall where.
  Many thanks for any point.

  Ondrej 

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





--

Mitchel Constantin
Snap - A desktop user interface for Asterisk
www.snapanumber.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




--
Tom Vile
___
--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: FW: [asterisk-users] Desktop integration

2006-11-13 Thread Ondrej Valousek




Hi Mitchel,

this looked Very good to me at the first glimpse - then I realized the
client is Windows only :-(
We have Linux desktops here...

Thanks anyway...
Ondrej

mitcheloc wrote:
Snap will do this for you. (Check my signature)
  
  
On 11/13/06, Ondrej Valousek [EMAIL PROTECTED] wrote:
  
  
 Hi Dean,


 I will check that site - thanks for the hint.

 The biggest problem I see with authentication and I do not think
mexuar

could help me here (and I am definitely going to pay $2000 for it :-)

 But it is another story...


 Thank you!

 Ondrej


 Dean Collins wrote:




Ondrej,


You could do it using Mexuar Corraleta but this is a commercial
application

for Asterisk (US$2,000)


http://www.mexuar.com/products_sdk.shtml


http://www.mexuar.com/downloads/Press/CorraletaLaunchPR-1-branded.pdf




However it has a whole heap more functionality than what you are
looking

for.




If you just want to do 2 legged outbound calls check out 'call files'
on

www.voip-info.org









Cheers,




Dean





 



From: [EMAIL PROTECTED]

[mailto:[EMAIL PROTECTED]] On Behalf

Of Ondrej Valousek

 Sent: Monday, 13 November 2006 6:29 AM

 To: Asterisk Users Mailing List - Non-Commercial Discussion

 Subject: [asterisk-users] Desktop integration




Hi all,


 I am interested in integrating my telephone system (I am using
hardphones

and Asterisk) with my desktop - something like this:


 1. someone sends me his/her phone number via email/icq

 2. I cut/paste the number in some application/web page (?)

 3. my phone starts ringing and when I pick it up I will get connected
with

the remote party.


 Now I know I have read some discussion about this possibility but I
can not

recall where.

 Many thanks for any point.


 Ondrej 


___

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




  
  
  




___
--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: FW: [asterisk-users] Desktop integration

2006-11-13 Thread bails
We use Asterisk Desktop Manager http://adm.hamnett.org/ very 
successfully with both debian and windows desktops.


Bails

Ondrej Valousek wrote:

Hi Mitchel,

this looked Very good to me at the first glimpse - then I realized the 
client is Windows only :-(

We have Linux desktops here...

Thanks anyway...
Ondrej

mitcheloc wrote:


Snap will do this for you. (Check my signature)

On 11/13/06, Ondrej Valousek [EMAIL PROTECTED] wrote:



 Hi Dean,

 I will check that site - thanks for the hint.
 The biggest problem I see with authentication and I do not think mexuar
could help me here (and I am definitely going to pay $2000 for it :-)
 But it is another story...

 Thank you!
 Ondrej

 Dean Collins wrote:



Ondrej,

You could do it using Mexuar Corraleta but this is a commercial 
application

for Asterisk (US$2,000)

http://www.mexuar.com/products_sdk.shtml

http://www.mexuar.com/downloads/Press/CorraletaLaunchPR-1-branded.pdf



However it has a whole heap more functionality than what you are looking
for.



If you just want to do 2 legged outbound calls check out 'call files' on
www.voip-info.org








Cheers,



Dean




 


From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Ondrej Valousek
 Sent: Monday, 13 November 2006 6:29 AM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: [asterisk-users] Desktop integration



Hi all,

 I am interested in integrating my telephone system (I am using 
hardphones

and Asterisk) with my desktop - something like this:

 1. someone sends me his/her phone number via email/icq
 2. I cut/paste the number in some application/web page (?)
 3. my phone starts ringing and when I pick it up I will get 
connected with

the remote party.

 Now I know I have read some discussion about this possibility but I 
can not

recall where.
 Many thanks for any point.

 Ondrej 

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











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


Re: FW: [asterisk-users] Desktop integration

2006-11-13 Thread Michiel van Baak
On 15:34, Mon 13 Nov 06, bails wrote:
 We use Asterisk Desktop Manager http://adm.hamnett.org/ very 
 successfully with both debian and windows desktops.

Firefox can't find the server at adm.hamnett.org.

-- 

Michiel van Baak
[EMAIL PROTECTED]
http://michiel.vanbaak.eu
GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x71C946BD

Why is it drug addicts and computer afficionados are both called 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


Re: FW: [asterisk-users] Desktop integration

2006-11-13 Thread Dave Cotton
On Mon, 2006-11-13 at 17:00 +0100, Michiel van Baak wrote:
 On 15:34, Mon 13 Nov 06, bails wrote:
  We use Asterisk Desktop Manager http://adm.hamnett.org/ very 
  successfully with both debian and windows desktops.
 
 Firefox can't find the server at adm.hamnett.org.

Just downloaded it with Firefox, try again.
-- 
Dave Cotton [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


Re: FW: [asterisk-users] Desktop integration

2006-11-13 Thread Michiel van Baak
On 17:27, Mon 13 Nov 06, Dave Cotton wrote:
 On Mon, 2006-11-13 at 17:00 +0100, Michiel van Baak wrote:
  On 15:34, Mon 13 Nov 06, bails wrote:
   We use Asterisk Desktop Manager http://adm.hamnett.org/ very 
   successfully with both debian and windows desktops.
  
  Firefox can't find the server at adm.hamnett.org.
 
 Just downloaded it with Firefox, try again.

At home it's working. Must be something in our work dns
setup. Thnx.
-- 

Michiel van Baak
[EMAIL PROTECTED]
http://michiel.vanbaak.eu
GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x71C946BD

Why is it drug addicts and computer afficionados are both called 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