[asterisk-users] Queue with linear strategy does not work

2013-12-10 Thread Thorben Jensen
I have a queue with linear strategy. When I add dynamic members it does NOT
ring the members in the order they are added.

I use the command AddQueueMember to add members but it seems to be random
how it rings the members.

Hope somebody can help.

This is the description of linear strategy:


*linear: Rings interfaces in the order they are listed in the configuration
file. Dynamic members will be rung in the order in which they were added.  *

Regards
Thorben Jensen
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

Re: [asterisk-users] MixMonitor creating file on non-bridged calls with option b

2012-08-03 Thread Thorben Jensen
Hi Ikka,

I'm using asterisk 10.0.0  10.5.2  10.6.0  10.6.1 and they all leave
empty files.

Hope somebody can help.

Regads
Thorben G. Jensen

2012/8/3 Ikka Vertika (Mitra Kreasindo) ikka.vert...@mitrakreasindo.com

 HI,

 ** **

 What version is your asterisk ? I’m using 10.2, 10.4. 10.6, there all have
 the same problem.

 I had read once, that there’s a bug in asterisk 10.4, and fixed with
 patch. But if it fixed, why 10.61 still have the same problem ?

 I tried to patch it (ver 10.6x), but the patching process was
 unsuccessfull.  Some error occurs. The problem is still there…

 ** **

 Regards,

 Ikka (Jakarta, Indonesia)

 ** **

 *From:* asterisk-users-boun...@lists.digium.com [mailto:
 asterisk-users-boun...@lists.digium.com] *On Behalf Of *Thorben Jensen
 *Sent:* Saturday, July 28, 2012 1:58 PM
 *To:* asterisk-users
 *Subject:* [asterisk-users] MixMonitor creating file on non-bridged calls
 with option b

 ** **

 I am using MixMonitor to record calls and I have set the b option as I
 don't want to get files for non-bridged calls. 

 ** **

 Mixmonitor always creates a file with 0 bytes even when the call is not
 bridged. Is it possible to avoid this somehow?

 ** **

 This is what I do:

 ** **

 Set(CALLFILENAME=${STRFTIME(${EPOCH},,%Y%m%d-%H%M%S)}_${CALLERID(num)});**
 **

 MixMonitor(${CALLFILENAME},b);

 ** **

 Regards

 Thorben

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 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 --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

Re: [asterisk-users] MixMonitor creating file on non-bridged calls with option b

2012-08-03 Thread Thorben Jensen

 Hi Jonathan,

 If I set the MixMonitor option on a queue, it will not create an zero
 length file if the call is not bridged, and I just assumed it would be the
 case with option b.

 I have set the fileformat to raw, but if I set it to wav it will create a
 64 byte file.

 Off course I can delete the files in a script, but I thought I was doing
 something wrong.

 I have not made a bug report.

 Regards
 Thorben


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

Re: [asterisk-users] MixMonitor creating file on non-bridged calls with option b

2012-08-03 Thread Thorben Jensen

 I was looking over Queue and I don't think there is actually an option
 for Queue that will automatically start a MixMonitor. I see a few options
 involving mixmonitor (x and X), but they appear to be more about allowing
 the parties involved with the call to start MixMonitor through dialplan
 features or something rather than actually doing an automatic MixMonitor.

 Could you clarify what you mean by 'the MixMonitor option with Queue'?


See this web page under the heading Monitor Format
http://www.voip-info.org/wiki/view/Asterisk+config+queues.conf

Kind Regards
Thorben
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

Re: [asterisk-users] MixMonitor creating file on non-bridged calls with option b

2012-08-03 Thread Thorben Jensen

 MixMonitor creates the file before it starts recording. The b option
 simply waits until the bridge event to take audio frames and add them to
 the stream. I don't really see why this is a problem.  It isn't like you
 are going to run out of space for zero length files, and more to the point
 if you really dislike the clutter generated by having zero length files you
 could always run a script after recording to check if you added a zero
 length file and remove it if you did.

 Are there any actual bug reports (in JIRA) you could reference though?  If
 not, please create one and we'll look into it.




 --
 Jonathan R. Rose
 Digium, Inc. | Software Engineer
 445 Jan Davis Drive NW - Huntsville, AL 35806 - US
 direct +1 256 428 6139

 I  just found that this has already been reported to JIRA:
https://issues.asterisk.org/jira/browse/ASTERISK-20156

Hope this helps.

Regards
Thorben
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

[asterisk-users] MixMonitor creating file on non-bridged calls with option b

2012-07-28 Thread Thorben Jensen
I am using MixMonitor to record calls and I have set the b option as I
don't want to get files for non-bridged calls.

Mixmonitor always creates a file with 0 bytes even when the call is not
bridged. Is it possible to avoid this somehow?

This is what I do:

Set(CALLFILENAME=${STRFTIME(${EPOCH},,%Y%m%d-%H%M%S)}_${CALLERID(num)});
MixMonitor(${CALLFILENAME},b);

Regards
Thorben
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

[asterisk-users] Fax setup T.38 Help needed

2012-06-20 Thread Thorben Jensen
Hi,

I'm looking for someone who can help us setup Fax with T. 38 on asterisk
10.x.x - We need to be able to do FoIP (Fax over IP) as we have no pstn
lines available.

Do you know how to setup a reliable fax system, then we will pay you to
help us do this.

Regards
Thorben
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

[asterisk-users] Where do I find error message descriptions?

2011-11-05 Thread Thorben Jensen
Is there a place where I can find more description of error messages I
see in asterisk CLI?
I get this message very often when watching the CLI:

[Nov  4 12:12:42] ERROR[21533]: app_queue.c:3083 ring_entry: Found a
channel matching iterface SIP/213_323 while status was 1 changed to 0

I have Googled it but no answers but I found the code, but I'm no good
at C code, perhaps someone can tell me whats going on?

if (!qe-parent-ringinuse || !tmp-member-ignorebusy) {
if ((tmp-member-status == AST_DEVICE_UNKNOWN) ||
(tmp-member-status == AST_DEVICE_NOT_INUSE)) {
newstate =
ast_parse_device_state(tmp-member-interface);
if (newstate != tmp-member-status) {
ast_log(LOG_ERROR, Found a channel
matching iterface %s while status was %i changed to %i\n,
tmp-member-interface,
tmp-member-status, newstate);
update_status(qe-parent, tmp-member,
newstate);
}
}

Regards
Thorben

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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


[asterisk-users] What does this error mean?

2011-11-04 Thread Thorben Jensen
Can anyone tell me why I get this error very often?

[Nov  4 12:12:42] ERROR[21533]: app_queue.c:3083 ring_entry: Found a
channel matching iterface SIP/213_323 while status was 1 changed to 0

Regards
Thorben G. Jensen
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

[Asterisk-Users] Re: Asterisk hosted solution

2006-04-03 Thread Thorben Jensen
Hi David,

We have no plans of charging for this service. I don't know which people you 
are referring to that is has been forced to paying now - perhaps you would 
let me know?

I know it might sound unbelieveable to you but Easy PABX is absolutely free 
to use.

Thorben


Dovid Bender [EMAIL PROTECTED] skrev i en meddelelse 
news:[EMAIL PROTECTED]

--- Thorben Jensen [EMAIL PROTECTED] wrote:

 http://voip-info.org/wiki/view/Easy+PABX

 With Easy PABX you can create your own virtual PABX
 online in just minutes.
 Easy PABX is based on Asterisk and best of all -
 it's completely free.

 Regards
 thorben.dk

Whats the catch ? When do you stop giving it for free
since these people are on your system they are forced
to now pay.

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.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



___
--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] Asterisk hosted solution

2006-03-31 Thread Thorben Jensen
http://voip-info.org/wiki/view/Easy+PABX

With Easy PABX you can create your own virtual PABX online in just minutes.
Easy PABX is based on Asterisk and best of all - it's completely free.

Regards
thorben.dk 



___
--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] IPManager PBX Features

2005-10-16 Thread Thorben Jensen








IPManager version 1.6 has just been released. Below
is a list of some of the features you will get on your Asterisk server using
IPManager to generate your configuration files.



Download: http://ipsoftware.thorben.dk



PBX Features

The following features will be available to users of
the PBX if you are using IPManager to configure your PBX.




 Unconditional
 forwarding of all calls to your mobile or other phone number.
 Dual
 calling  your desk phone and your mobile will ring simultaneously
 and whatever phone is answered first will get the call.
 Do Not
 Disturb until a predefined time  You can set DND from your
 extension to a predefined time  if set to 10:15 all calls to your
 extension will be told that you are not available until 10:15. The DND
 will automatically be removed at 10:15.
 All
 Extensions can have opening/closing hours this includes Phones, Queues,
 IVR-menus and Direct Dial Ins. This means that you can have certain
 hours that an extension is open. Any phone you can override that setting
 by dialling a code. It is possible to configure an alternative extension
 to go to when an extension is closed. Examples:
 
  You have
  a Queue that callers are sent to during opening hours and when the queue
  is closed all calls are sent to an IVR-menu.
  Your own
  extension is open from 9:00-12:00 and 13:00-17:00 all other times calls
  are sent to your mobile.
  You have
  a main IVR-menu that asks caller to press 1 for sales, 2 for service
  during opening hours and another IVR-Menu that tells callers that you are
  closed but they can press 1 to have you call them back (You will get an
  e-mail), or 2 to leave a message on the answering service..
  All
  calls to your main queue are redirected to your mobile when closed.
 
 Virtual
 Users  You can have a Virtual number and that means that you can
 login at any extension and you will receive all your calls at that
 extension. Callers will also be sent to your Voicemail (if configured) and
 you will be using your own caller ID when making calls from that
 extension. This can typically be used by people travelling between
 departments or shift workers sharing the same desk. When you are not
 logged in at any extension, you can have your call sent to any other phone
 number  ex. your mobile.
 Wake-up
 calls  Schedule calls to your extension at scheduled time.
 Voicemail
  you will have any messages left in your voicemail forwarded to
 your e-mail account with a .wav file that holds your message. Just click
 the .wav file and you will hear the message.
 The
 LEDs will work on SNOM phones (maybe also other phones but
 thats not tested).
 Limiting
 the number of active incoming/outgoing lines on your server 
 its better to give a busy signal when you run out of bandwidth than
 everybody gets poor speech quality because of bandwidth limitations. 
 Speed
 Dialling  You can define speed dial number that everybody can use
 for ease of dialling. Ex. dial 1 to and the server will dial
 00353469071189. You can have unlimited Speed Dials 
 Use IPSpeedDial application for easy maintenance of speed dial numbers.
 Queue
 Identification  see on your phone which queue the caller entered as
 well as caller ID.
 Music
 Groups  You can define different music groups for each queue.
 Its easy to upload MP3-files to your server.
 Any
 extension can be added to a queue  you can even have mobile phones
 receive calls from a queue. It is possible to give priority to the phone
 members of a queue meaning that lower priorities will receive calls only
 when higher priorities are busy.
 Possible
 for callers to break out of a queue and ask to be called back  you
 will receive an e-mail with the number to call back.
 Any
 extension can be dialled directly by using DIDs.
 Virtual
 faxes  will receive a fax and send it to your e-mail account.
 DISA
  Direct Inward System Access  Dial into your server and get
 a second dial tone and make a call out to the cheap VoIP rates 
 Password protected and you can have different password for each user.
 Call Back
 to predefined extension  Have your customers call into your server
 and the server will call back to the caller and connect him to a
 predefined extension (this would typically be a queue). Great savings if
 you are calling from a mobile abroad this will typically save you between
 40-75 % in roaming charges. It is typically a LOT cheaper to call a mobile
 abroad than having the mobile make the call.
 Call Back
 and connect to any number  Call your server and dial a password.
 You can now dial the number you want to be connected to and the server
 will hang up and call you back and connect you to the number you
 requested. This way you are calling at the 

[Asterisk-Users] DB Function in version 1.2

2005-10-02 Thread Thorben Jensen
To read a database entry from the asterisk database using the new DB
function the syntax is this:

Set(DB(Family/Key))

And to write to the database:

Set(DB(Family/Key)=Value)

BUT how do I delete a database entry?

Regards
Thorben


___
--Bandwidth and Colocation sponsored by Easynews.com --

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


[Asterisk-Users] Re: DB Function in version 1.2

2005-10-02 Thread Thorben Jensen
Thank you

Doug Lytle [EMAIL PROTECTED] skrev i en meddelelse 
news:[EMAIL PROTECTED]
 Thorben Jensen wrote:

BUT how do I delete a database entry?



 Thorben,

 You still have to use the old DBdel command.

 Doug

 ___
 --Bandwidth and Colocation sponsored by Easynews.com --

 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
 



___
--Bandwidth and Colocation sponsored by Easynews.com --

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


[Asterisk-Users] Developer help needed

2005-10-01 Thread Thorben Jensen
I need help from somebody to make a Boot CD which includes a Linux
distribution and Asterisk, it should install more or less automatically
(like [EMAIL PROTECTED]). I need this to make a version that is optimized for
use with IPManager, IPSpeedDial and IPSwitchBoard. 

If you think you are capable of making this please contact me off list so we
can discuss your fees and timeframe.

Regards
Thorben
http://ipsoftware.thorben.dk


___
--Bandwidth and Colocation sponsored by Easynews.com --

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


[Asterisk-Users] Major bug solved in IPSwitchBoard

2005-09-29 Thread Thorben Jensen








I have been working on solving a major issue with
IPSwitchBoard. It was reported that IPS would use all available memory and get
the PC to grind to a halt.



I could not understand this as I had it running on
many different PCs in Denmark.




I now found the bug:



IPS would crash on any PC that had .
configured as decimal point (in Denmark we use ,) this meant that
IPS would consume all memory as it tried to make fonts 100 times larger than
meant to be. I have now installed a PC with US windows on it just for testing. I
hope that I have not caused you too much trouble.



Download the software for FREE: http://ipsoftware.thorben.dk



IPSwitchBoard is totally customizable and will give
you, among other things:



 Unattended/attended transfers. 

 Park calls and retrieve/forward them
again. 

 Organize all your SIP, IAX extensions
(automatically retrieved from Asterisk). 

 Monitor all extensions, queues and
Parked Calls. 

 Dynamically log extensions in and out
of queues. 

 Set Do Not Disturb on Extensions and give
a reason 

 Set Call forwarding for extensions 

 Set Dual call for extensions Monitor
multiple calls on an Extension/Queue Monitor

 Extension online status 

 Totally customizable 

 Make you own skins with logos
etc.

 Make your own buttons  DND,
Online, Queue Status, Call Forward, Dual Call, MWI etc.



IPDesigner is a unique tool for customizing and
setting up IPSwitchBoard. With IPDesigner you can design your own IPSwitchBoard
with Company logo and all the buttons you need for the Operator.



IPSwitchBoard works with .IPS files. These files
contain everything needed for IPSwitchBoard such as bitmaps, server and
extension configuration. You can build .IPS files with IPDesigner. 



Download the manual to read more: http://www.ipdanmark.dk/IPSwitchBoard/IPswitchBoard%20Manual.pdf



Thorben






___
--Bandwidth and Colocation sponsored by Easynews.com --

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

[Asterisk-Users] IPSpeedDial has just been released

2005-09-24 Thread Thorben Jensen








IPSpeedDial creates speed
dial numbers for Asterisk.



Download from: http://ipsoftware.thorben.dk



Use this to create speed
dial numbers that can be used by all extensions on your Asterisk server. This
program will create entries in the asterisk database which you then can lookup
in you dial plan get the number to dial.



All extensions can now dial
these speed dial number. 



IPManager has this build
into the dial plan and will work without further changes.



This is also supported by
IPSwitchBoard so you can search the names in the call box of IPSwitchBoard.



The program can import .txt
or .csv files containing your speed dials.














___
--Bandwidth and Colocation sponsored by Easynews.com --

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

[Asterisk-Users] Brand New IPSwitchBoard

2005-09-21 Thread Thorben Jensen
I am proud to announce that I have just released a brand new IPSwitchBoard
totally rewritten from scratch. The new version has been built on the
experiences gained by the previous versions.

Download for FREE: http://ipsoftware.thorben.dk

IPSwitchBoard is totally customizable and will give you, among other things:

Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your SIP, IAX extensions (automatically retrieved from
Asterisk). 
Monitor all extensions, queues and Parked Calls. 
Dynamically log extensions in and out of queues. 
Set Do Not Disturb on Extensions and give a reason
Set Call forwarding for extensions
Set Dual call for extensions
Monitor multiple calls on an Extension/Queue
Monitor Extension online status
Totally customizable
Make you own skins with logo's etc.
Make your own buttons - DND, Online, Queue Status, Call Forward, Dual Call,
MWI etc.

IPDesigner is a unique tool for customizing and setting up IPSwitchBoard.
With IPDesigner you can design your own IPSwitchBoard with Company logo and
all the buttons you need for the Operator.

IPSwitchBoard works with .IPS files. These files contain everything needed
for IPSwitchBoard such as bitmaps, server and extension configuration.  You
can build .IPS files with IPDesigner.When you have installed IPSwitchBoard
you can start IPSwitchBoard by double clicking an .IPS file. If you right
click an .IPS file you will have the options:

Open - will open the file in IPSwitchBoard
Edit - will open the file in IPDesigner
Configure - will start the configuration program where you can edit the
server configuration.
Extract Bitmaps - will extract any bitmaps there's embedded in the .IPS
file.

___
--Bandwidth and Colocation sponsored by Easynews.com --

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


[Asterisk-Users] IPSwichBoard designers wanted

2005-09-04 Thread Thorben Jensen








I am rewriting IPSwitchBoard at the moment. I want to
make IPSwitchBoard Skinable meaning that you can design your own
skins with company logo etc. You will also be able to add graphical extension
buttons, and leds that will light up ex. DND, busy/free, message waiting
and much more.



If you are graphically minded and would like to help
with making test skins using PhotoShop or other tool that produces bitmaps;
then please drop me an e-mail on [EMAIL PROTECTED],
and I will send you some more details.



Regards

Thorben



http://ipsoftware.thorben.dk












___
--Bandwidth and Colocation sponsored by Easynews.com --

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

[Asterisk-Users] IPManager now supports SIP, IAX and Zap

2005-08-19 Thread Thorben Jensen








2005.08.19
Version 1.3



* IPManager now
supports SIP, IAX and Zap extensions and trunks.

* Music on Hold
Groups can be defined and assigned.

* MP3 files can
be uploaded directly to Asterisk



FREE download: http://ipsoftware.thorben.dk



__

IPManager is a
configuration tool for Asterisk. It gives you an easy way of configuring
Asterisk to perform maintenance and creation of the following:



SIP, IAX and Zap
Extensions can be configured very easy with Caller ID and Voicemail



Virtual Users
 A user can login at any phone with an Virtual user extension, and (s)he
will receive all calls at that extension, the voicemail and Called ID will be
moved to that extension as well. This would be very useful if you
have people sharing a phone or a person travelling between departments who need
to be reached at his own number everywhere.



Queues 
configure Queues and ACD groups very easily.



Extension Opening
Hours  Any extension or Queue can have its own opening hours, say you
want to receive calls on your office phone during office hours and then calls
will be transferred to your mobile after office hours. You can always force an
extension to be open or closed by dialing a code on the phone.



Extension Closing
Hours  Any extension or Queue can have its own Closing hours 
this can be used for vacations and holidays.



IVR Menus can be
set up very easily, you can even attach a wav file, which will be uploaded to
Asterisk and converted to gsm format automatically.



Direct Dial In
 Map DDI to local extensions



Least Cost
Routing  Configure which calls should use which trunks



Conferencing
 setup a conference room that even outside users can join



Virtual Faxes
 receives faxes and forwards them to an email account



DISA  Call
this number and get a new dial tone where you can call any local extension



Music on Hold,
make different groups and assign them to queues and upload mp3 files directly
from IPM.



SIP Channels

IAX Channels

Zap Channels








___
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

[Asterisk-Users] IPManager now templated based

2005-08-14 Thread Thorben Jensen
IPManager is now fully customizable as everything is generated from
templates using the IPManager database. Complete set of templates is
included in the download. You can configure the dial plan and other
configuration files exactly like you want, using nothing but notepad.
There's a very easy syntax for retrieving data from the IPManager database.
You can even have different templates for each company.

Download FREE: http://ipsoftware.thorben.dk



IPManager is a configuration tool for Asterisk. It gives you an easy way of
configuring Asterisk to perform maintenance and creation of the following:

SIP Extensions can be configured very easy with Caller ID and Voicemail

Virtual User - A user can login at any phone with an Virtual user extension,
and (s)he will receive all calls at that extension, the voicemail and Called
ID will be moved to that extension as well. This would be very useful if
you have people sharing a phone or a person travelling between departments
who need to be reached at his own number everywhere.

Queues - configure Queues and ACD groups very easily.

Extension Opening Hours - Any extension or Queue can have its own opening
hours, say you want to receive calls on your office phone during office
hours and then calls will be transferred to your mobile after office hours.
You can always force an extension to be open or closed by dialing a code on
the phone.

IVR Menus can be set up very easily, you can even attach a wav file, which
will be uploaded to Asterisk and converted to gsm format automatically.

Direct Dial In - Map DDI to local extensions

Least Cost Routing - Configure which calls should use which trunks

Conferencing - setup a conference room that even outside users can join

Virtual Faxes - receives faxes and forwards them to an email account

DISA - Call this number and get a new dial tone where you can call any local
extension

SIP Channels 

IAX Channels 

All you need is a PC with Linux and Asterisk installed, and IPManager can
configure the Asterisk server for you in a very simple and intuitive way
from your Windows PC.

___
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


[Asterisk-Users] IPManager has been released - the ultimate configuration tool for Asterisk

2005-08-05 Thread Thorben Jensen
IPManager - Asterisk Configuration Tool has been released with IPSwitchBoard


Overview 

IPManager is a configuration tool for Asterisk. It gives you an easy way of
configuring Asterisk to perform maintenance and creation of the following: 

. SIP Extensions can be configured very easy with Caller ID and Voicemail 
. Virtual User - A user can login at any phone with an Virtual user
extension, and (s)he will receive all calls at that extension, the voicemail
and Called ID will be moved to that extension as well. This would be very
useful if you have people sharing a phone or a person travelling between
departments who need to be reached at his own number everywhere. 
. Queues - configure Queues and ACD groups very easily. 
. Extension Opening Hours - Any extension or Queue can have its own opening
hours, say you want to receive calls on your office phone during office
hours and then calls will be transferred to your mobile after office hours.
You can always force an extension to be open or closed by dialing a code on
the phone. 
. IVR Menus can be set up very easily, you can even attach a wav file, which
will be uploaded to Asterisk and converted to gsm format automatically. 
. Direct Dial In - Map DDI to local extensions 
. Least Cost Routing - Configure which calls should use which trunks 
. Conferencing - setup a conference room that even outside users can join 
. Virtual Faxes - receives faxes and forwards them to an email account 
. DISA - Call this number and get a new dial tone where you can call any
local extension 
. SIP Channels 
. IAX Channels 

All you need is a PC with Linux and Asterisk installed, and IPManager can do
the rest for you in a very simple and intuitive way. 

You can also maintain many different configurations for different servers in
IPManager and connect to them by the click of a button. You can even have
IPManager configure and connect IPSwitchBoard to the server you are working
on; this makes it very easy for you to support multiple servers.

FREE Download: http://ipswitchboard.thorben.dk



___
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


[Asterisk-Users] IPSwitchBoard Updated

2005-07-27 Thread Thorben Jensen
Version 0.124 - 27 July 2005

* Improved Billing facilities:
* - Rate can be specified with four decimals
* - Connection Fee can be supressed by specifying a negative number
* - Rates can be defined for a time period (ex.: 18:00 - 23:59)
* - Description can be added for a Call Rate

Download FREE: http://ipswitchboard.thorben.dk



IPSwitchBoard is an Operators Panel for the Asterisk PBX. 

IPSwitchBoard is a FREE Windows.NET application which gives you: 
Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your SIP, IAX, CAPI and Zap extensions (automatically retrieved
from Asterisk). 
Hotel/Call shop Billing module
Queue Log Analyser
Monitor all extensions, queues, agents and Parked Calls. 
Dynamically log extensions in and out of queues. 
Integration with CRM software on the web. 
Browse Call Records and make Charts.
Record calls and transfer wav files to the PC automatically.
Set Do Not Disturb on Extensions and give a reason. 
Speed Dialing. Speed Dial Numbers can be shared from the server.




___
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


[Asterisk-Users] Queue Log Analyser Build into IPS 0.123

2005-07-17 Thread Thorben Jensen
IPSwitchBoard Version 0.123 - 17 July 2005

* Queue Analysis has been added to IPSwitchBoard.

In order to properly manage ACD queues, it is important to be able to keep 
track of details of call setups and teardowns in much greater detail than 
traditional call detail records provide. In order to support this, extensive 
and detailed tracing of every queued call is stored in the queue log, 
located (by default) in /var/log/asterisk/queue_log. A Queue Log Analyser 
has now been build into IPSwitchBoard. Start IPSwitchBoard and the log file 
is retrieved automatically from Asterisk and there's a lot of reports you 
can enjoy:

1. Answered/unanswered Calls by Date, Hour or Weekday
2. Service Level by Date, Hour or Weekday
3. Agent calls - who received all those calls
4. Unanswered call - detail report with caller ID

If you need any other reports, please drop me an e-mail on [EMAIL PROTECTED]

FREE Download: http://ipswitchboard.thorben.dk



___
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


[Asterisk-Users] Queue Log Analyser Build into IPS

2005-07-17 Thread Thorben Jensen
IPSwitchBoard Version 0.123 - 17 July 2005

* Queue Analysis has been added to IPSwitchBoard.
In order to properly manage ACD queues, it is important to be able to keep
track of details of call setups and teardowns in much greater detail than
traditional call detail records provide. In order to support this, extensive
and detailed tracing of every queued call is stored in the queue log,
located (by default) in /var/log/asterisk/queue_log. A Queue Log Analyser
has now been build into IPSwitchBoard. Start IPSwitchBoard and the log file
is retrieved automatically from Asterisk and there's a lot of reports you
can enjoy:

1. Answered/unanswered Calls by Date, Hour or Weekday
2. Service Level by Date, Hour or Weekday
3. Agent calls - who received all those calls
4. Unanswered call - detail report with caller ID

If you need any other reports, please drop me an e-mail on [EMAIL PROTECTED]

FREE Download: http://ipswitchboard.thorben.dk



___
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


[Asterisk-Users] IPSwitchBoard shows Call Charges

2005-07-12 Thread Thorben Jensen
Version 0.122 - 12 July 2005

* Call charges are now shown on the Calls page
* IPSwitchBoard will check for a live connection every minute and reconnect
if the connection is lost for some reason (asterisk restart etc.)
* Bug fixes

FREE Download: http://ipswitchboard.thorben.dk


IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your SIP, IAX, CAPI and Zap extensions (automatically retrieved
from Asterisk). 
Hotel/Call shop Billing module
Monitor all extensions, queues, agents and Parked Calls. 
Dynamically log extensions in and out of queues. 
Integration with CRM software on the web. 
Browse Call Records and make Charts.
Record calls and transfer wav files to the PC automatically.
Set Do Not Disturb on Extensions and give a reason. 
Speed Dialing. Speed Dial Numbers can be shared from the server.


___
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


[Asterisk-Users] Operators Panel for Asterisk

2005-07-02 Thread Thorben Jensen
IPSwitchBoard Version 0.121 - 02 July 2005

* Extensions can be added to speed dial number. This can be used to dial
speed dial numbers from any phone connected to your asterisk system. This
requires that you configure your dial plan to take advantage of this
feature. See sample Dial Plan in the IPS Manual.

Download: http://ipswitchboard.thorben.dk

_
IPSwitchBoard is a FREE Windows.Net application that will allow you to: 

Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your SIP, IAX and Zap extensions (automatically retrieved from
Asterisk). 
Hotel/Call shop Billing module 
Monitor all extensions, queues, agents and Parked Calls. 
Dynamically log extensions in and out of queues. 
Integration with CRM software on the web. 
Browse Call Records and make Charts. 
Record calls and transfer wav files to the PC automatically. 
Set Do Not Disturb on Extensions and give a reason. 
Speed Dialing. Share speed dial number between users of IPS 


___
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


[Asterisk-Users] IPSwitchBoard version 0.120 released

2005-06-25 Thread Thorben Jensen








Download FREE
from: http://ipswitchboard.thorben.dk



IPSwitchBoard is
an Operators Panel for the Asterisk PBX. IPSwitchBoard is a FREE Windows.NET
application which gives you: 



*
Unattended/attended transfers. 

* Park calls and
retrieve/forward them again. 

* Organize all
your SIP, IAX, CAPI and Zap extensions (automatically retrieved from Asterisk).


* Hotel/Call-Shop
Billing module

* Monitor all
extensions, queues, agents and Parked Calls. 

* Dynamically log
extensions in and out of queues. 

* Integration
with CRM software on the web. 

* Browse Call
Records and make Charts.

* Record calls
and transfer wav files to the PC automatically.

* Set Do Not
Disturb on Extensions and give a reason. 

* Speed Dialing.
Speed Dial Numbers can be shared from the server.










___
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

[Asterisk-Users] New version of IPSwitchBoard

2005-06-05 Thread Thorben Jensen
Version 0.119 - 5. june 2005

. Monitored extension removed from panel for enhanced security 
. Transfer of recordings from asterisk enhanced 
. Lots of bug fixes 

FREE Download: http://ipswitchboard.thorben.dk



IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your SIP, IAX, CAPI and Zap extensions (automatically retrieved
from Asterisk). 
Hotel/Call-Shop Billing module
Monitor all extensions, queues, agents and Parked Calls. 
Dynamically log extensions in and out of queues. 
Integration with CRM software on the web. 
Browse Call Records and make Charts.
Record calls and transfer wav files to the PC automatically.
Set Do Not Disturb on Extensions and give a reason. 
Speed Dialing. Speed Dial Numbers can be shared from the server.




___
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


[Asterisk-Users] Drag and Drop with IPS

2005-05-23 Thread Thorben Jensen
Version 0.118 - 23. may 2005

* Drag and Drop Call and Channels buttons
* Show Channels as buttons on the Panel
* Show Queue information in very large letters on new panel
* Schedule Wakeup Calls (good for hotels)

Download: http://ipswitchboard.thorben.dk


___
IPSwitchBoard is an Operators Panel for the Asterisk PBX. 
IPS is a Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP, IAX, CAPI and Zap extensions (automatically
retrieved from Asterisk). 
* Hotel/Call shop Billing module
* Monitor all extensions, queues, agents and Parked Calls.
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Browse Call Records and make Charts.
* Record calls and transfer wav files to the PC automatically.
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialing. Speed dial number can be shared from the server.

___
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


[Asterisk-Users] IPSwitchBoard now supports CAPI

2005-05-21 Thread Thorben Jensen
Version 0.117 - 21. may 2005

* CAPI support has now been added to IPS
* Save all you speed dial number in the asterisk server and retrieve them
from any other intance of IPS. This way you can easily share all your speed
dial numbers between all users of IPS.
* All speed dial number can be saved with the family cidname - use this to
set Caller ID on incoming call in your dial plan. 
* Many bug fixes

FREE download from: http://ipswitchboard.thorben.dk



___
IPSwitchBoard is an Operators Panel for the Asterisk PBX. 
IPS is an Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP, IAX, CAPI and Zap extensions (automatically
retrieved from Asterisk). 
* Hotel/Call shop Billing module
* Monitor all extensions, queues, agents and Parked Calls.
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Browse Call Records and make Charts.
* Record calls and transfer wav files to the PC automatically.
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialing. Speed dial number can be shared from the server.


___
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


[Asterisk-Users] Re: IPswitch cannot delete lines double lines

2005-05-21 Thread Thorben Jensen
You can choose Refresh Extensions from the file menu in IPSwitchBoard, 
that will delete all extensions and read all from your server again.

Thorben


Ronald Wiplinger [EMAIL PROTECTED] skrev i en meddelelse 
news:[EMAIL PROTECTED]
I had to cancel Broadvoice, but IPswitch does not like to delete me that 
line, ...

 I use instead voipjet, but this one pops up twice, as well as nufone, ...

 How can I get the name - info into Zap-1 .. Zap-4   (FXS and FXO type)?

 bye

 Ronald

 ___
 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
 



___
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


[Asterisk-Users] IPS can now print and chartc

2005-05-16 Thread Thorben Jensen
The latest version of IPSwitchBoard has been released:

Version 0.116 - 16. may 2005

* Call Data Records can be charted (number of calls and duration of calls by
the hour).
* Hotel Application can now print the calls and charges
* Many minor bug fixes


FREE Download: http://ipswitchboard.thorben.dk



___
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


[Asterisk-Users] IPSwitchBoard version 0.115

2005-05-10 Thread Thorben Jensen
Versiom 0.115 - 10. may 2005

* This version will encrypt your configuration file, so logins and passwords
are not easily readable. 
* Lots of bug fixes.

Download: http://ipswitchboard.thorben.dk

Regards
Thorben


___
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


[Asterisk-Users] Re: HINT

2005-05-08 Thread Thorben Jensen
Can you post a full dialplan example...


I have a very complex dialplan but this is all you need. Put this line in 
your dial plan whenever you are making or recieving a call.
exten = 201,hint,SIP/201

Also, will this only work for certain phones and atas also?

I don't know. I use it for SNOM 190's



___
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


[Asterisk-Users] Re: HINT

2005-05-07 Thread Thorben Jensen
 Could you please give us some more detail as to what you did, in terms of 
 configuring the hint, and specifically what changes in the behavior of the 
 running server-phone interaction as a result?


You need to set the hint for the phone when the phone is being dialed like 
this:

exten = 201,hint,SIP/201
exten = 201,1,macro(dial-sip,201)

It's important that you write the full name of the phone SIP/201 as you 
can't use substitutions like this SIP/${EXTEN} - it took me a long time to 
figure that out.

Thorben




___
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


[Asterisk-Users] Re: Re: HINT

2005-05-07 Thread Thorben Jensen
You need to put that in whether SIP/201 is recieving or making a call.

This only work for SIP/201 - you will need to do the same for every phone 
you have.

thorben


Julian J. M. [EMAIL PROTECTED] skrev i en meddelelse 
news:[EMAIL PROTECTED]
But that only works when SIP/201 receives a call, right?

What if SIP/201 is making a dialout call, does it show as busy in the
phone's keypad?

Julian J. M.

On 5/7/05, Thorben Jensen [EMAIL PROTECTED] wrote:
  Could you please give us some more detail as to what you did, in terms 
  of
  configuring the hint, and specifically what changes in the behavior of 
  the
  running server-phone interaction as a result?

 You need to set the hint for the phone when the phone is being dialed like
 this:

 exten = 201,hint,SIP/201
 exten = 201,1,macro(dial-sip,201)

 It's important that you write the full name of the phone SIP/201 as you
 can't use substitutions like this SIP/${EXTEN} - it took me a long time to
 figure that out.
___
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



___
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


[Asterisk-Users] IPS version 0.114

2005-05-06 Thread Thorben Jensen
IPSwitchBoard Version 0.114 - 6. may 2005.

* IPS will now delete recordings on the Asterisk server after it's
transferred to your PC.
* You can now configure call Rates as X of a Currency Unit. If your Currency
is Dollars then the smallest Call Rate is Dollar/X. X would typically be
1000.
* IPS will now save the last position and size and set that the next time
your start IPS
* bug fixes


Download: http://ipswitchboard.thorben.dk



___
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


[Asterisk-Users] IPSwitchBoard version 0.113 released

2005-05-04 Thread Thorben Jensen
Version 0.113 - 4. may 2005

* Can now transfer recorded conversations to your PC automatically
* You can configure a folder to hold recordings 
* You can now specify that all conversations on an extension should be
recorded 
* It's possible to attach a customised string to the recording file name 



Download: http://ipswitchboard.thorben.dk



___
IPSwitchBoard is a FREE Windows.Net application that will allow you to: 

Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your Zap, SIP and IAX extensions (automatically retrieved from
Asterisk). 
Hotel/Call Shop Billing module
Monitor all extensions. 
Monitor all queues. 
Monitor Agents. 
Monitor Parked Calls. 
Dynamically log extensions in and out of queues. 
Integration with CRM software on the web. 
Record conversations. 
Browse Call Records
Drop any active call. 
Set Do Not Disturb on Extensions and give a reason. 
Speed Dialling. 
User selectable ring tones for IPSwitchBoard. 
User selectable button colors.

___
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


[Asterisk-Users] IPS Version 0.112 released

2005-05-01 Thread Thorben Jensen
IPSwitchBoard Version 0.112 - 1. may 2005.

Manual for IPSwitchBoard is now included in the download for the new
version, please let me know if you find errors in the manual. 

It's now possible to specify a program to launch along with parameters when
there's an incoming call for IPS. You can also use the Caller ID Number as
parameter.

Download: http://ipswitchboard.thorben.dk


___
IPSwitchBoard is a FREE Windows.Net application that will allow you to: 

Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your Zap, SIP and IAX extensions (automatically retrieved from
Asterisk). 
Hotel/Call Shop Billing module
Monitor all extensions. 
Monitor all queues. 
Monitor Agents. 
Monitor Parked Calls. 
Dynamically log extensions in and out of queues. 
Integration with CRM software on the web. 
Record conversations. 
Browse Call Records
Drop any active call. 
Set Do Not Disturb on Extensions and give a reason. 
Speed Dialling. 
User selectable ring tones for IPSwitchBoard. 
User selectable button colors.


___
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


[Asterisk-Users] IPSwitchBoard version 0.111 released

2005-04-30 Thread Thorben Jensen
Version 0.111 - 30. April 2005.

* Security added, you can now specify what the user of IPS is allowed to do
such as start different programs, hang-up calls etc. 
* Many bug fixes 

Download: http://ipswitchboard.thorben.dk


___
IPSwitchBoard is a FREE Windows.Net application that will allow you to: 

Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your Zap, SIP and IAX extensions (automatically retrieved from
Asterisk). 
Hotel/Call Shop Billing module 
Monitor all extensions. 
Monitor all queues. 
Monitor Agents. 
Monitor Parked Calls. 
Dynamically log extensions in and out of queues. 
Integration with CRM software on the web. 
Record conversations. 
Browse Call Records 
Drop any active call. 
Set Do Not Disturb on Extensions and give a reason. 
Speed Dialling. 
User selectable ring tones for IPSwitchBoard. 
User selectable button colors.

___
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


[Asterisk-Users] IPSwitchBoard Version 0.110 Released

2005-04-29 Thread Thorben Jensen
Version 0.110 - 29. April 2005.

Completely rebuild with .NET Version 2.0 BETA 2. 

IPS now has MDI (Multiple Documents Interface) meaning that you can have
many program open at the same time, they will all update in real-time. 
Hotel/Call Shop Billing module. 
Status of Agents can be monitored on the main Panel. 
Show extensions reachable/unreachable 
Sort order of extensions/agents/queues on the panel. 
Translation facilities build into IPS 
Monitoring of channels 
Refresh extensions/agents/queues from the menu.

Download FREE: http://ipswitchboard.thorben.dk



___
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


SV: [Asterisk-Users] Re: IPswitch: How to use speed dialing?

2005-04-25 Thread Thorben Jensen
Hi Ronald,

What happens in your Asterisk box when you press the Speed Dial number in
IPS?

Thorben


| -Oprindelig meddelelse-
| Fra: Ronald Wiplinger [mailto:[EMAIL PROTECTED]
| Sendt: 26. april 2005 00:37
| Til: [EMAIL PROTECTED]
| Emne: Re: [Asterisk-Users] Re: IPswitch: How to use speed dialing?
| 
| 
| Has anybody success with speed dialing?
| If so, I am sure you can help me to get into this club.
| 
| 
| 
| 
| tgj wrote:
| 
| Hi Ronald,
| 
| It seems like you need to put in default as your context. However I
| think
| your problem was that you put the number in CallerID column and The
| CallerID
| in the Name column. I was hoping to hear if it helped you to change that?
| 
| 
| 
| 
| Let's try it together:
| 1. Open IPswitch
| 2. Open Extensions tab on top
| 3. Switch to the tab Speed Dials on the bottom
| 4. Fill in:
|   Name: [EMAIL PROTECTED]
|   Caller Id: Peter
|   Visible on Panel:  (ticket)
|   Exentension Group:  Speed Dial Numbers
| 
| 
| Congratualtions, you have successfully installed the Asterisk Open
| Source . 
| 
| 
| bye
| 
| Ronald
| 
| 
| 
| Thorben
| 
| 
| Ronald Wiplinger [EMAIL PROTECTED] skrev i en meddelelse
| news:[EMAIL PROTECTED]
| 
| 
| tgj wrote:
| 
| 
| 
| Hi Ronald,
| 
| I must admit I am getting confused now.
| 
| I understand that you have a problem getting Speed Dial Buttons to
| work.
| The problem as I understand it is that the calls are placed in the
| wrong
| context.
| 
| To solve that problem I have asked you to make sure that you have typed
| a
| valid context on the configuration page. Have you tried that?
| 
| I think thats all you need to do, how do I post an example of that?
| It's a
| fairly easy thing to do.
| 
| Thorben
| 
| 
| 
| 
| 
| What is the right syntax to do that?
| Context for dialing a trunk line is trunkint
| Peter has the phone number 011-234-5678
| How to set it up as a speed dial number? Below are all info you may
| need:
| 
| The phone 601 (= Monitor extension) is a Sip phone,
| 
| [general]
| context=default; Default context for incoming calls
| 
| [601]
| type=friend
| username=601
| secret=dont+tell+you
| canreinvite=no
| host=dynamic
| dtmfmode=rfc2833
| [EMAIL PROTECTED]
| nat=yes
| callgroup=1
| pickupgroup=1
| callerid=Ronald Hotline,601
| qualify=1000
| 
| 
| extensions.conf
| [default]
| ...
| include = trunkint
| ...
| 
| [trunkint]
| ;
| ; International long distance through trunk
| ; .  other lines deleted
| exten = _9011Z.,107,Dial(SIP/${EXTEN:[EMAIL PROTECTED])
| exten = _9011Z.,108,hangup
| 
| 
| 
| 


___
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


[Asterisk-Users] Hotel billing in IPSwitchBoard

2005-04-23 Thread Thorben Jensen
I am currently working on implementing Hotel Billing in IPSwitchBoard. 

The idea is that a receptionist in a hotel can just right click an extension
button and choose Account; IPS will now calculate the call charges made
from that extension and show all calls and charges on a form. 

The receptionist now has the option to close the account which will reset
the account. 

I will add a table for editing call charges, and there will be a possibility
to add a fee for connection charges and also an option to charge calls per
xx seconds and to add/subtract a percentage to all calls. 

I will add a family/key to the asterisk database to indicate if the
extension is closed, this way you can stop outgoing calls from being made
from a closed extension by checking the dial plan. 


Please let me know if there are any other features you would like to see in
IPSwitchBoard. 

Thorben
Download IPSwitchBoard for free here: http://ipswitchboard.thorben.dk


___
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


[Asterisk-Users] IPSwitchBoard connects to CDR

2005-04-20 Thread Thorben Jensen
The latest Version 0.92 of IPSwitchBoard can connect to your MySQL database and 
show you call records with filtering on extension and from- and to date. IPS 
now also will check if theres a newer version available on start-up and 
offer to start the download. The Configuration page has changed layout 
(Hopefully for the better) 

Download for free here: http://ipswitchboard.thorben.dk

Thorben
PS: If you have the possibility of giving me access to a server configured with 
a CAPI card, I would be grateful. I would love to add support for CAPI.



___
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


[Asterisk-Users] IPSwitchBoard Version 0.91 Released

2005-04-17 Thread Thorben Jensen
Version 0.91 - 17. April 2005. 


* IPS is now using the context configured in Asterisk for peers - the
context on the configuration page is used for Speed Dial Numbers only

* New tab page for Speed Dial Numbers

Download here: http://ipswitchboard.thorben.dk



___
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


[Asterisk-Users] IPSwitchBoard now has Zap Support

2005-04-16 Thread Thorben Jensen
The just released version 0.90 of IPSwitchBoard now also supports Zap
Channels.

* Zap support added - thank you to Daniel for letting me use his server and
to Tim for patiently testing 
* Configuration page can now be password protected 
* Option to show technology on buttons (SIP, IAX2, Zap) 
* Number of new and old messages on the extensions page 
* Number of new messages shown on call buttons (also shown on tooltip) 
* Calls made from the monitored extension is now also logged on the calls
page

Download for FREE here: http://ipswitchboard.thorben.dk


I would be very grateful if you will let me know of any bugs you might find.


IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your Zap, SIP and IAX extensions (automatically retrieved
from Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling.

___
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


[Asterisk-Users] IPSwitchBoard Version 0.86 Released

2005-04-14 Thread Thorben Jensen
There have been a lot of bug fixes because of the change to the event driven
model.

Download here: http://ipswitchboard.thorben.dk



IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retrieved from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling.

___
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] Version 0.80 of IPS released

2005-04-13 Thread Thorben Jensen
| On a slightly different note:
| 
| Is there a setting to force IPS not to minimise every time an action
| is performed?
| 
| It gets very annoying after a few minuites and with our reception
| being very very busy it could get quiet sickly
| 

On the config page: uncheck minimize after call/transfer

Thorben


___
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


[Asterisk-Users] IPSwitchBoard is now Event Driven

2005-04-13 Thread Thorben Jensen
Version 0.85 - 13. April 2005. 

* IPSwitchBoard is now event-driven - much less load on server
* Major bug fixes.

FREE Download here: http://ipswitchboard.thorben.dk


IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retrieved from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling.

___
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] Version 0.80 of IPS released

2005-04-13 Thread Thorben Jensen
| I removed the old version, deleted the install directory, and installed a
| new version, then changed the config so it connects to a different pbx. I
| am
| still seeing all the old extensions, nothing from the new pbx, even though
| ipswitchboard is connecting to the new pbx. Where are the extensions being
| cached and how do I do a completely new install? Can you add the ability
| to
| switch pbx's?
| 
| New PBX:
|   == Manager 'anguilla' logged off from 206.48.59.5
|   == Parsing '/etc/asterisk/manager.conf': Found
|   == Manager 'anguilla' logged on from 206.48.59.5
| 
| Chris Mason
| www.anguillaguide.com

The only file you need to delete is ...Documents\IPSwitchBoard\config.xml

That file contains your configuration.

I will look at switching servers.

thorben

___
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


[Asterisk-Users] Problem with * transfer

2005-04-12 Thread Thorben Jensen
Hi,

I make a call to my mobile, now I would like to transfer the call to another
extension from my mobile, I try with #1 (which is configured in
features.conf as unattended transfer), and pbxtransfer is played back to me,
but when I try to enter an extension I just get an error.

What am I doing wrong?

This is the entries from the CLI:

-- Playing 'pbx-transfer' (language 'da')
-- Unable to find extension '2' in context ''
-- Playing 'beeperr' (language 'da')

It seems that it's trying to fin extension 2 in context  - how do I set
the context? I am dialing through IAX2 and this is the entry in iax.conf:

[_MTk4MzA4NA_pP3CqDqJvz]
language=da
type=friend
host=129.142.224.250
secret=consealed
context=default
canreinvite=no
notransfer=no
trunk=no
disallow=all
allow=ulaw
allow=alaw
allow=ilbc
allow=gsm

regards - Thorben


___
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


[Asterisk-Users] Version 0.80 of IPS released

2005-04-12 Thread Thorben Jensen
Version 0.80 - 12. April 2005.

* Swedish language added - thanks Daniel Nylander
* Bug fixes

Download for FREE: http://ipswitchboard.thorben.dk


Would you like to help translate IPS into your language? Please click the
link below for details. I will add your language as soon as I receive it.
http://ipswitchboard.thorben.dk/index.php?option=com_simpleboardItemid=42f
unc=showcatcatid=5



IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retrieved from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling.

___
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] Version 0.80 of IPS released

2005-04-12 Thread Thorben Jensen
| Some others, would it be possible to pass a message to a phone (onto the
| display) ???
| 
| 
| bye
| 
| Ronald

Hi Ronald,

Good idea, any ideas on how to do that? I think it would depend a lot on the
phone being used.

Thanks for your interest in IPS.

Thorben


___
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


SV: [Asterisk-Users] Version 0.80 of IPS released

2005-04-12 Thread Thorben Jensen
| 
| You spit out the versions faster than I can reinstall them :)
| 
| Did you by any chance had the time to take a look a transfer problem
| when there are two active calls on a monitored extension ?
| 
| Ivan

Hi Ivan,

The versions are coming fairly fast I admit :-) I looked at the transfer
problem with multiple calls, and I do not have a solution as yet, however
it's not forgotten.

Regards
Thorben


___
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] Version 0.80 of IPS released

2005-04-12 Thread Thorben Jensen
| 
| Any chance of integrating some sort of input text box, where you can
| just type in the extension number and hit enter to transfer a call?
| 
| Maybe with some option for attended transfer as well even?
| 
| Regards,
| Adam

Hi Adam,

There is a textbox for input on the panel bottom left-hand corner, just type
the number and hit enter and you will make/transfer a call.

How to do an attended transfer:

1. Answer the incoming call
2. Park the call by hitting park or click left- or right arrow key
3. Click the extension you want to announce the call to
4. Click the parked call, and the call will be put through.

Hope this helps.

Regards
Thorben




___
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] Version 0.80 of IPS released

2005-04-12 Thread Thorben Jensen
| On the Calls tab the Caller ID Name is for incoming calls for me
| correct, since caller-id on my Zap device does not work with unknown
| The list of outgoing calls shows an empty space, I believe it should
| show the same caller-id, as it does on the Panel tab.
| 
| 
| bye
| 
| Ronald

Hi Ronald,

You are correct, that's a bug and I will correct it soon.

Thorben


___
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


[Asterisk-Users] IPS version 0.79 released

2005-04-11 Thread Thorben Jensen
Version 0.79 - 11. April 2005.

* Norvegian language added - thanks to Kåre Sundland
* German language updated - thanks to Marco Walz
* Russian language updated - thanks to dnz63
* Caller ID name added to call buttons when on call

FREE Download: http://ipswitchboard.thorben.dk


Would you like to help translate IPS into your language? Please click the
link below for details. I will add your language as soon as I receive it.
http://ipswitchboard.thorben.dk/index.php?option=com_simpleboardItemid=42f
unc=showcatcatid=5


IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retrieved from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling.

___
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] IPswitch Monitor Extension

2005-04-11 Thread Thorben Jensen

| I cannot setup the Monitor Extension SIP/650
| 
| I tried to use
| 
| [650]
| username=admin
| type=friend
| context=inhouse
| secret=admin-secret
| host=dynamic
| nat=yes
| canreinvite=no
| qualify=yes
| [EMAIL PROTECTED]
| callerid=ELMIT office,650
| callgroup=1
| pickupgroup=1
| 
| It does not show up as peer.
| 
| There is no field in IPswitch for username / password for the Monitor
| Extension
| 
You do not need username/password for the Monitor extension. You do need to
see it on the extension page. If it is not there try this:

1. Delete all your extensions
2. Disconnect from server
3. Connect to server

Now it should read all your extension again. If this does not help, then
post again.

Thorben.


___
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] IPswitch Monitor Extension

2005-04-11 Thread Thorben Jensen
| It is there!
| However, if I try to call 650, than I get 650 is unavailable
| If I try to make a call on the IPswitch, e.g., to 601, and click on
| call, it just closes the window.
| 
| sip show usersshows the extension 650
| sip show peers   shows the extension 650 with Host UNSPECIFIED
| 

If you try to call 650 from IPS you will get busy because you are calling
yourself (ie.: from 650 to 650). If you are calling 650 from another
extension it's a problem that has nothing to do with IPS, you will need to
look at your dial plan or other things.

IPS will minimize the window to tray when you make a call (Click a button)
if you have checked Minimize to tray on the config page. Is IPS not making
the call?

Hope this helps
Thorben


___
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


[Asterisk-Users] IPSwitchBoard Version 0.77 Released

2005-04-10 Thread Thorben Jensen
Release notes:

Version 0.77 - 10. April 2005.

* All strings can now be translated - new strings file published on forum
* Optimizations of code
* Bug fixes 

Download here: http://ipswitchboard.thorben.dk

Would you like to see IPSwitchBoard in your own language? 
http://ipswitchboard.thorben.dk/index.php?option=com_simpleboardItemid=42f
unc=showcatcatid=5


___
IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 
 
* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retrieved from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling. 
* Share Speed Dial files among all users of IPSwitchBoard. 
* User selectable ring tones for IPSwitchBoard. 
* User selectable button colors

___
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


[Asterisk-Users] Yet another version of IPS Freeware

2005-04-10 Thread Thorben Jensen
Version 0.78 of IPSwitchBoard has just been released.

* Records all incoming and outgoing calls on separate tab page
* Make calls by double clicking the incoming/outgoing call
* Italian language updated - thanks to Francesco Romano

FREE Download: http://ipswitchboard.thorben.dk

Would you like to help translate IPS into your language? Please click the
link below for details. I will add your language as soon as I receive it.
http://mambo.thorben.dk/index.php?option=com_simpleboardItemid=42func=show
catcatid=5



IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retrieved from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling. 
* Share Speed Dial files among all users of IPSwitchBoard. 
* User selectable ring tones for IPSwitchBoard. 
* User selectable button colors.

___
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


[Asterisk-Users] How to change language using manager interface?

2005-04-09 Thread Thorben Jensen
How do I change the language when I do commands from the manager interface?
It seems that if I originate a call to a mailbox it will always speak
English. I have set the language to da in sip.conf general context, but it
still speaks English. I have no problems when using a phone, everything is
in Danish.

Is there a manager interface command to change language?

Thorben


___
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] How to change language using manager interface?

2005-04-09 Thread Thorben Jensen
| 
| How do I change the language when I do commands from the manager
| interface?
| It seems that if I originate a call to a mailbox it will always speak
| English. I have set the language to da in sip.conf general context, but
| it
| still speaks English. I have no problems when using a phone, everything
| is
| in Danish.
| 
| 
| 
| You have to use SetLanguage(da) in you dialplan.
| 
| Is there a manager interface command to change language?
| 
| Thorben

Hi,

I am looking for a way to change language from the manager interface, I
don't have a problem with the dialplan.

Thorben


___
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


[Asterisk-Users] IPSwitchBoard Version 0.76 released

2005-04-07 Thread Thorben Jensen
Release notes:

• Pop-up on incoming call is now configurable 
• Romanian Language updated 
• Language can be changed on config page (Remember to restart after changing
language) 
• Bug fixes 

Download here: http://ipswitchboard.thorben.dk



IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retrieved from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling. 
* Share Speed Dial files among all users of IPSwitchBoard. 
* User selectable ring tones for IPSwitchBoard. 
* User selectable button colors.


___
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


[Asterisk-Users] IPSwitchBoard - Now in Spanish

2005-04-06 Thread Thorben Jensen








IPSwitchBoard
Version 0.75 has just been released, it has three additional languages:



* Spanish

* Dutch

* Romanian



Download from
here:

http://ipswitchboard.thorben.dk







IPSwitchBoard is
an Operators Panel for the Asterisk PBX. IPSwitchBoard is a FREE Windows.NET
application which gives you: 



*
Unattended/attended transfers. 

* Park calls and
retrieve/forward them again. 

* Organize all
your SIP and IAX extensions (automatically retrieved from Asterisk). 

* Monitor all
extensions. 

* Monitor all
queues. 

* Monitor Agents.


* Monitor Parked
Calls. 

* Dynamically log
extensions in and out of queues. 

* Integration
with CRM software on the web. 

* Drop any active
call. 

* Import/Export
extensions to/from Asterisk Server DB. 

* Set Do Not
Disturb on Extensions and give a reason. 

* Speed Dialling.


* Share Speed
Dial files among all users of IPSwitchBoard. 

* User selectable
ring tones for IPSwitchBoard. 

* User selectable button
colors.








___
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

[Asterisk-Users] IPSwitchBoard speaks other languages

2005-04-04 Thread Thorben Jensen
IPSwitchBoard now speaks English, Danish, German, Portuguese, Italian and
Russian.

The new release version 0.74 can be downloaded from here:
http://ipswitchboard.thorben.dk


Are you interested in helping to translate IPSwitchBoard?
http://ipswitchboard.thorben.dk/index.php?option=com_simpleboardItemid=42f
unc=viewid=32catid=5


IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retreived from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling. 
* Share Speed Dial files among all users of IPSwitchBoard. 
* User selectable ring tones for IPSwitchBoard. 
* User selectable button colors. 



___
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


[Asterisk-Users] IPSwitchboard Version 0.73 Released

2005-04-03 Thread Thorben Jensen
Version 0.73 - 3. April 2005.

* Italian Language added - Thank you to Francesco Romano for translating
* IPSwitchBoard can minimize to tray

Download: http://ipswitchboard.thorben.dk 

IPSwitchBoard is now available in English, Danish and Italian; would you
like to help translate IPSwitchBoard? 
http://ipswitchboard.thorben.dk/index.php?option=com_simpleboardItemid=42f
unc=viewid=32catid=2 

Thank you in advance.
Thorben

___
IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

* Unattended/attended transfers. 
* Park calls and retrieve/forward them again. 
* Organize all your SIP and IAX extensions (automatically retrieved from
Asterisk). 
* Monitor all extensions. 
* Monitor all queues. 
* Monitor Agents. 
* Monitor Parked Calls. 
* Dynamically log extensions in and out of queues. 
* Integration with CRM software on the web. 
* Drop any active call. 
* Import/Export extensions to/from Asterisk Server DB. 
* Set Do Not Disturb on Extensions and give a reason. 
* Speed Dialling. 
* Share Speed Dial files among all users of IPSwitchBoard. 
* User selectable ring tones for IPSwitchBoard. 
* User selectable button colors. 



___
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


[Asterisk-Users] Version 0.72 of IPSwitchBoard Released

2005-04-02 Thread Thorben Jensen








Version 0.72 - 2.
April 2005. Download from http://ipswitchboard.thorben.dk



 Danish
language added

 Transfer
to Queues now supported

 You can
return a substring of the ${CALLERID} variable used in the URL for CRM systems.




To enable
transfer to Queues you must type in an extension that IPSwitchBoard should
transfer to on the Queues Page in the extension column. You can only edit the
extension column when you are not connected to the Asterisk server.



You can return a
substring of the CALLERID used in the URL for a CRM system on the config page:



${CALLERID:offset:length}




Returns a
substring of the string CALLERID, beginning at offset offset and returning the
next length characters. 

If offset is
negative, it is taken leftwards from the right hand end of the string. 



If length is
omitted or is negative, then all the rest of the string beginning at offset is
returned. 



Examples: 

${CALLERID} =
123456789



${CALLERID:1}-returnsthestring23456789


${CALLERID:-4}-returnsthestring6789


${CALLERID:0:3}-returnsthestring123


${CALLERID:2:3}-returnsthestring345


${CALLERID:-4:3}-returnsthestring678



___

IPSwitchBoard is
an FREE Operators Switch Board for Asterisk users 



IPSwitchBoard is
a FREE Windows.Net application that will allow you to do: 


Unattended/attended transfers. 

 Park
calls and retrieve/forward them again. 

 Organize
all your SIP and IAX extensions (automatically retreived from Asterisk). 

 Monitor
all extensions. 

 Monitor
all queues. 

 Monitor
Agents. 

 Monitor
Parked Calls. 


Dynamically log extensions in and out of queues. 


Integration with CRM software on the web. 

 Record
conversations. 

 Drop any
active call. 


Import/Export extensions to/from Asterisk Server DB. 

 Set Do
Not Disturb on Extensions and give a reason. 

 Speed
Dialling. 

 Share
Speed Dial files among all users of IPSwitchBoard. 

 User
selectable ring tones for IPSwitchBoard. 

 User
selectable button colors. 








___
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

[Asterisk-Users] IPSwitchBoard Version 0.71 Released

2005-03-30 Thread Thorben Jensen
Version 0.71 - 30. march 2005. 

. Fixed a memory leak, and optimized performance drastically.

Download from here: http://ipswitchBoard.thorben.dk


IPSwitchBoard is an Operators Panel for the Asterisk PBX. IPSwitchBoard is a
FREE Windows.NET application which gives you: 

Unattended/attended transfers. 
Park calls and retrieve/forward them again. 
Organize all your SIP and IAX extensions (automatically retreived from 
Asterisk). 
Monitor all extensions. 
Monitor all queues. 
Monitor Agents. 
Monitor Parked Calls. 
Dynamically log extensions in and out of queues. 
Integration with CRM software on the web. 
Drop any active call. 
Import/Export extensions to/from Asterisk Server DB. 
Set Do Not Disturb on Extensions and give a reason. 
Speed Dialling. 
Share Speed Dial files among all users of IPSwitchBoard. 
User selectable ring tones for IPSwitchBoard. 
User selectable button colors.

Regards
Thorben


___
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


[Asterisk-Users] Bug fixes IPSwitchBoard

2005-03-28 Thread Thorben Jensen
Hi all,

I have just released IPSwitchBoard version 0.70. There are no major changes,
but a few important bug fixes.
 
You can download IPS from the new website I have created for IPSwitchBoard:
http://ipswitchboard.thorben.dk

Regards
Thorben


___
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


[Asterisk-Users] IPSwitchBoard new Release

2005-03-26 Thread Thorben Jensen








IPSwitchBoard Version 0.69 has just been released; it
is available for FREE: Download here



Release notes:


 Record
 calls by right clicking any extension button, you can have several
 recordings at the same time. 
 Bug
 fixes


The recordings will be
placed as a single wav file on the Asterisk server in the folder:
/var/spool/asterisk/monitor 

the name of the file will have this format:
extension-year-month-day-hour-min-sec 

ex.:
211-2005-3-27-15-12-10 (extension 211 recorded at 2005-March-27 at 15:12:10).



Regards

Thorben








___
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] IPSwitchBoard-BETA Update

2005-03-25 Thread Thorben Jensen
Hi, would you check if the entry is removed from the asterisk database? You
do that by issuing this command: database show dnd in the CLI.

Can you set/remove dnd on another channel?

Thank you
Thorben


 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Matias G.
 Sendt: 25. marts 2005 23:21
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: [Asterisk-Users] IPSwitchBoard-BETA Update
 
 Hi when setting a DND on an extension (connected to * via Linksys PAP2 NA)
 then I can't remove the DND...
 
 I select Remove DND from ... but it doesn´t do anything
 
 bye,
 M.
 - Original Message -
 From: Remco Barende [EMAIL PROTECTED]
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 asterisk-users@lists.digium.com
 Sent: Thursday, March 24, 2005 4:03 PM
 Subject: RE: [Asterisk-Users] IPSwitchBoard-BETA Update
 
 
 Hi Thorben!
 
 I did get it working by manually adding a cid to the database.
 
 It's a bit confusing, the telephone number for CID must be put in the Name
 field in ISB, the Namer under Caller ID, also the number is put by
 Asterisk in Server extension group, don't know if this matters at all
 
 Maybe a small macro or input menu would be useful for a first entry
 
 Thanks for this really great app!
 
 
 On Wed, 23 Mar 2005, Thorben  Jensen wrote:
 
  Hi Remco,
 
  The Monitored extension is the phone on your desk.
 
  The database IPSwitchBoard is using is the build-in database in
 Asterisk,
  and you can easily edit it:
 http://www.voip-info.org/wiki-Asterisk+Database
 
  Thank you for your interest in IPSwitchBoard.
  Thorben
 
 
 
  -Oprindelig meddelelse-
  Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
  [EMAIL PROTECTED] På vegne af Remco Barende
  Sendt: 23. marts 2005 19:33
  Til: Asterisk Users Mailing List - Non-Commercial Discussion
  Emne: Re: [Asterisk-Users] IPSwitchBoard-BETA Update
 
  Hi list!
 
  I don't have any experience with such switchboards and have some
 questions
  on the setup.
 
  What am I supposed to fill in at Monitored extension? Is that the
 number
  of the phone on my desk or a separate (new) telephone number that I
 should
  assign to the manager?
 
  Then a general question, using the switchboard, is it possible to edit
 the
  database that asterisk uses that allows me to assign names to incoming
  phone numbers?
 
  Thanks!
 
 
 
  On Sun, 20 Mar 2005, Thorben  Jensen wrote:
 
  Release 0.66 of IPSwitchBoard is now available for FREE download at:
  http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA
 
  Enhancements:
 
  Support for Call Parking and retrieve/forward them again.
  Last Call on the Queues Page now displays a date-time in human
 readable
  format.
  Added CallerID on the Queue Members listing on the Queue page.
  New page with Agent information.
  Minor bug fixes.
 
  IPSwitchBoard is a FREE Windows.Net application that will allow you to
  do:
 
  Unattended/attended transfers
  Park calls and retrieve/forward them again
  Organize all your extensions (automatically retreived from Asterisk)
  Monitor all extensions
  Monitor all queues
  Monitor Agents
  Monitor Parked Calls
  Log extensions in and out of dynamic queues
  Speed Dialling
  Shared Speed Dial files among all users of IPSwitchBoard
  User selectable ring tones for IPSwitchBoard
  User selectable button colors
 
 
  ___
  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
 
  ___
  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
 
  ___
  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
 
 
 
 --
 --
 
 
 
  ___
  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
 
 ___
 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

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http

RE: [Asterisk-Users] IPSwitchBoard-BETA Update

2005-03-23 Thread Thorben Jensen
Hi Remco,

The Monitored extension is the phone on your desk.

The database IPSwitchBoard is using is the build-in database in Asterisk,
and you can easily edit it: http://www.voip-info.org/wiki-Asterisk+Database

Thank you for your interest in IPSwitchBoard.
Thorben



 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Remco Barende
 Sendt: 23. marts 2005 19:33
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: [Asterisk-Users] IPSwitchBoard-BETA Update
 
 Hi list!
 
 I don't have any experience with such switchboards and have some questions
 on the setup.
 
 What am I supposed to fill in at Monitored extension? Is that the number
 of the phone on my desk or a separate (new) telephone number that I should
 assign to the manager?
 
 Then a general question, using the switchboard, is it possible to edit the
 database that asterisk uses that allows me to assign names to incoming
 phone numbers?
 
 Thanks!
 
 
 
 On Sun, 20 Mar 2005, Thorben  Jensen wrote:
 
  Release 0.66 of IPSwitchBoard is now available for FREE download at:
  http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA
 
  Enhancements:
 
  Support for Call Parking and retrieve/forward them again.
  Last Call on the Queues Page now displays a date-time in human readable
  format.
  Added CallerID on the Queue Members listing on the Queue page.
  New page with Agent information.
  Minor bug fixes.
 
  IPSwitchBoard is a FREE Windows.Net application that will allow you to
 do:
 
  Unattended/attended transfers
  Park calls and retrieve/forward them again
  Organize all your extensions (automatically retreived from Asterisk)
  Monitor all extensions
  Monitor all queues
  Monitor Agents
  Monitor Parked Calls
  Log extensions in and out of dynamic queues
  Speed Dialling
  Shared Speed Dial files among all users of IPSwitchBoard
  User selectable ring tones for IPSwitchBoard
  User selectable button colors
 
 
  ___
  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
 
 ___
 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

___
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] IPSwitchBoard-BETA Update

2005-03-23 Thread Thorben Jensen
Hi Remco,

The IP Column should be the IP number that Asterisk has registered.

If names do not show up in the left box, it's because there's no callerid in
extensions.

Import from server will only import any cidname entries from Asterisk
database. If you want to refresh your extensions, you need to delete all
your extensions on the extension page, disconnect from server and then
connect to server again.

Please send me a copy of your sip.conf and a screenshot of the extension
page and I will look at the problem. mailto:[EMAIL PROTECTED]


Thorben


 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Remco Barende
 Sendt: 23. marts 2005 21:03
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: RE: [Asterisk-Users] IPSwitchBoard-BETA Update
 
 Thanks for your reply. I already created a new extension, I will tag it to
 my deskphone. Your app looks really neat :)
 
 The field IP address in the extensions TAB is showing all kinds of weird
 data, but no valid ip addresses (some fields do have something that looks
 like an ip addres but the numbers do not make any sense). Is this a bug?
 
 Also in Panel TAB in my SIP extensions the names do not show up (they are
 in sip.conf) and the box on the bottom left stays empty (no extensions).
 
 Does ISB 'cache' the extensions? If I delete a SIP connection and I click
 import from server the deleted extension doesn't disappear.
 
 Thanks for making this awesome app available!
 
 Cheers!
 Remco
 
 
 On Wed, 23 Mar 2005, Thorben  Jensen wrote:
 
  Hi Remco,
 
  The Monitored extension is the phone on your desk.
 
  The database IPSwitchBoard is using is the build-in database in
 Asterisk,
  and you can easily edit it: http://www.voip-info.org/wiki-
 Asterisk+Database
 
  Thank you for your interest in IPSwitchBoard.
  Thorben
 
 
 
  -Oprindelig meddelelse-
  Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
  [EMAIL PROTECTED] På vegne af Remco Barende
  Sendt: 23. marts 2005 19:33
  Til: Asterisk Users Mailing List - Non-Commercial Discussion
  Emne: Re: [Asterisk-Users] IPSwitchBoard-BETA Update
 
  Hi list!
 
  I don't have any experience with such switchboards and have some
 questions
  on the setup.
 
  What am I supposed to fill in at Monitored extension? Is that the
 number
  of the phone on my desk or a separate (new) telephone number that I
 should
  assign to the manager?
 
  Then a general question, using the switchboard, is it possible to edit
 the
  database that asterisk uses that allows me to assign names to incoming
  phone numbers?
 
  Thanks!
 
 
 
  On Sun, 20 Mar 2005, Thorben  Jensen wrote:
 
  Release 0.66 of IPSwitchBoard is now available for FREE download at:
  http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA
 
  Enhancements:
 
  Support for Call Parking and retrieve/forward them again.
  Last Call on the Queues Page now displays a date-time in human
 readable
  format.
  Added CallerID on the Queue Members listing on the Queue page.
  New page with Agent information.
  Minor bug fixes.
 
  IPSwitchBoard is a FREE Windows.Net application that will allow you to
  do:
 
  Unattended/attended transfers
  Park calls and retrieve/forward them again
  Organize all your extensions (automatically retreived from Asterisk)
  Monitor all extensions
  Monitor all queues
  Monitor Agents
  Monitor Parked Calls
  Log extensions in and out of dynamic queues
  Speed Dialling
  Shared Speed Dial files among all users of IPSwitchBoard
  User selectable ring tones for IPSwitchBoard
  User selectable button colors
 
 
  ___
  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
 
  ___
  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
 
  ___
  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
 

___
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] IPSwitchBoard BETA

2005-03-22 Thread Thorben Jensen
Hi Ivan,

I know it's a problem and I will look at it.

Thorben

 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Ivan Meic (Vox Mundi)
 Sendt: 22. marts 2005 10:12
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: RE: [Asterisk-Users] IPSwitchBoard BETA
 
 Hi Thorben,
 
 Did you manage to take a look at I problem I described earlier ?
 If a phone has more than one active call, only one call (the last one
 received)
 can be transferred. In attempt to transfer a remaining call IPSwitchBoard
 will actually make a new call the number you were attempting to transfer
 call to.
 
 Also maybe it would be a good idea to somehow indicate a number of
 active calls on each phone.
 
 Sorry for bothering you, but as soon as some little details are solved
 I can really make use of such an application.
 
 Thanks for understanding.
 
 Regards,
 Ivan
 
 ___
 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

___
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


[Asterisk-Users] Release 0.68 of IPSwitchBoard

2005-03-22 Thread Thorben Jensen
Release 0.68 of IPSwitchBoard is ready for download at:
http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA


Release Notes:

Import/Export extensions to cidname in Asterisk Server, integrate this in
your dial plan to see who's calling by using the Asterisk app.
LookUpCidName(). 

Set Do Not Disturb for an Extension, and type a reason for DND which can
be seen by other users. This can be integrated in your dial plan by checking
for key dnd in Asterisk DB. 

Minor bug fixes.


IPSwitchBoard is an FREE Windows.NET application for use as Operators Panel
with Asterisk Server.



___
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


[Asterisk-Users] Version 0.67 of IPSwitchBoard Released

2005-03-21 Thread Thorben Jensen
IPSwitchBoard Version 0.67 Release notes:

CRM integration, can call a web page with callerid when there's an incoming
call. You can specify the min. and max. length of the callerid.
Drop any active call. 
Help file integrated in IPSwitchBoard. 
Play button for sound files.
Bug fixes - thank you for all your feedback.

Download IPSwitchBoard for FREE here: 
http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA



___
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


SV: [Asterisk-Users] Version 0.67 of IPSwitchBoard Released

2005-03-21 Thread Thorben Jensen
Hi Ivan,

Thank you for your bug report. It's fixed and ready for download.

Thank you for your interest in IPSwitchBoard
Thorben


 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Ivan Meic (Vox Mundi)
 Sendt: 21. marts 2005 16:15
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: RE: [Asterisk-Users] Version 0.67 of IPSwitchBoard Released
 
 Thorben,
 
 Please check the behaviour of a Park button.
 If you do a vertical resize of a window (application) Park button gets
 dislocated.
 
 Ivan
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Thorben
 Jensen
 Sent: Monday, March 21, 2005 3:05 PM
 To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
 Subject: [Asterisk-Users] Version 0.67 of IPSwitchBoard Released
 
 
 IPSwitchBoard Version 0.67 Release notes:
 
 CRM integration, can call a web page with callerid when there's an
 incoming
 call. You can specify the min. and max. length of the callerid.
 Drop any active call.
 Help file integrated in IPSwitchBoard.
 Play button for sound files.
 Bug fixes - thank you for all your feedback.
 
 Download IPSwitchBoard for FREE here:
 http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA
 
 
 
 ___
 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
 
 ___
 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

___
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


[Asterisk-Users] IPSwitchBoard-BETA Update

2005-03-20 Thread Thorben Jensen
Release 0.66 of IPSwitchBoard is now available for FREE download at: 
http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA

Enhancements:

Support for Call Parking and retrieve/forward them again. 
Last Call on the Queues Page now displays a date-time in human readable
format. 
Added CallerID on the Queue Members listing on the Queue page. 
New page with Agent information. 
Minor bug fixes. 

IPSwitchBoard is a FREE Windows.Net application that will allow you to do: 

Unattended/attended transfers 
Park calls and retrieve/forward them again 
Organize all your extensions (automatically retreived from Asterisk) 
Monitor all extensions 
Monitor all queues 
Monitor Agents 
Monitor Parked Calls 
Log extensions in and out of dynamic queues 
Speed Dialling 
Shared Speed Dial files among all users of IPSwitchBoard 
User selectable ring tones for IPSwitchBoard 
User selectable button colors


___
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] IPSwitchBoard-BETA Update

2005-03-20 Thread Thorben Jensen
That's not a 'Stoopid' question, because you can't drop a call. I will add
that feature soon.
Thorben


 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af John Breeden
 Sendt: 20. marts 2005 19:33
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: [Asterisk-Users] IPSwitchBoard-BETA Update
 
 Stoopid question 1:
 
 I see how to make a call but for the life of me I can't see how to DROP
 a call.
 
 Thorben Jensen wrote:
 
 Release 0.66 of IPSwitchBoard is now available for FREE download at:
 http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA
 
 Enhancements:
 
 Support for Call Parking and retrieve/forward them again.
 Last Call on the Queues Page now displays a date-time in human readable
 format.
 Added CallerID on the Queue Members listing on the Queue page.
 New page with Agent information.
 Minor bug fixes.
 
 IPSwitchBoard is a FREE Windows.Net application that will allow you to
 do:
 
 Unattended/attended transfers
 Park calls and retrieve/forward them again
 Organize all your extensions (automatically retreived from Asterisk)
 Monitor all extensions
 Monitor all queues
 Monitor Agents
 Monitor Parked Calls
 Log extensions in and out of dynamic queues
 Speed Dialling
 Shared Speed Dial files among all users of IPSwitchBoard
 User selectable ring tones for IPSwitchBoard
 User selectable button colors
 
 
 ___
 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
 
 
 
 
 
 
 ___
 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

___
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] IPSwitchBoard-BETA Update

2005-03-20 Thread Thorben Jensen
Release 0.67 of IPSwitchBoard will be available tomorrow and that release
can Drop calls, as well as look-up Web Pages when a call comes in. (CRM
function).
Thorben


 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Thorben Jensen
 Sendt: 20. marts 2005 20:20
 Til: 'Asterisk Users Mailing List - Non-Commercial Discussion'
 Emne: RE: [Asterisk-Users] IPSwitchBoard-BETA Update
 
 That's not a 'Stoopid' question, because you can't drop a call. I will add
 that feature soon.
 Thorben
 
 
  -Oprindelig meddelelse-
  Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
  [EMAIL PROTECTED] På vegne af John Breeden
  Sendt: 20. marts 2005 19:33
  Til: Asterisk Users Mailing List - Non-Commercial Discussion
  Emne: Re: [Asterisk-Users] IPSwitchBoard-BETA Update
 
  Stoopid question 1:
 
  I see how to make a call but for the life of me I can't see how to DROP
  a call.
 
  Thorben Jensen wrote:
 
  Release 0.66 of IPSwitchBoard is now available for FREE download at:
  http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA
  
  Enhancements:
  
  Support for Call Parking and retrieve/forward them again.
  Last Call on the Queues Page now displays a date-time in human readable
  format.
  Added CallerID on the Queue Members listing on the Queue page.
  New page with Agent information.
  Minor bug fixes.
  
  IPSwitchBoard is a FREE Windows.Net application that will allow you to
  do:
  
  Unattended/attended transfers
  Park calls and retrieve/forward them again
  Organize all your extensions (automatically retreived from Asterisk)
  Monitor all extensions
  Monitor all queues
  Monitor Agents
  Monitor Parked Calls
  Log extensions in and out of dynamic queues
  Speed Dialling
  Shared Speed Dial files among all users of IPSwitchBoard
  User selectable ring tones for IPSwitchBoard
  User selectable button colors
  
  
  ___
  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
  
  
  
  
  
 
  ___
  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
 
 ___
 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

___
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] Parking a call in manager interface

2005-03-20 Thread Thorben Jensen
Sounds good to me, I would love to be able to do C programming and I would
have it working today :-)

Thorben
The VB.NET Programmer


 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Matt Riddell
 Sendt: 20. marts 2005 23:52
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: [Asterisk-Users] Parking a call in manager interface
 
 Thorben Jensen wrote:
  Hi Matt,
 
  Thank you for your suggestion, it solved my problem. It's a shame that
 we
  have to make workarounds to make simple things like call parking work
 from
  the manager interface. I hope it will be solved in a future release.
 
 There's now a growing group of us who make manager-based applications
 that wish parking worked properly.
 
 Maybe if we get a few more we will have enough to bombard the bugtracker!
 
 I guess seeing as we're all programmers one of us should make a patch.
 What I'm thinking is:
 
 Application: ParkCall
 Synopsis: ParkCall(announceChannel, parkChannel)
 Description: If you call ParkCall (from the dialplan or the manager
 interface), you can pass in the channel to announce the parking
 destination to as well as the channel that you would like to have
 parked.  Bla bla bla
 
 :)
 
 --
 Cheers,
 
 Matt Riddell
 ___
 
 http://www.sineapps.com/news.php (Daily Asterisk News - html)
 http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)
 
 ___
 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

___
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] Parking a call in manager interface

2005-03-20 Thread Thorben Jensen

  There's now a growing group of us who make manager-based applications
  that wish parking worked properly.
 
  Maybe if we get a few more we will have enough to bombard the
 bugtracker!
 
  I guess seeing as we're all programmers one of us should make a patch.
  What I'm thinking is:
 
  Application: ParkCall
  Synopsis: ParkCall(announceChannel, parkChannel)
  Description: If you call ParkCall (from the dialplan or the manager
  interface), you can pass in the channel to announce the parking
  destination to as well as the channel that you would like to have
  parked.  Bla bla bla
 
 Well, I think this app already exists, its called parkandannouce
 http://www.voip-info.org/wiki-Asterisk+Cmd+parkandannounce
 For the manager you could create an extension that will execute
 parkandannounce and then use another extension to unpark, works for me
 using FOP.

The problem with ParkAnnounce is that you need to make changes to the dial
plan, when building apps for the manager interface you need to be able to do
it without having to ask people to modify their dial plan.

Thorben

___
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] IPSwitchBoard BETA

2005-03-19 Thread Thorben Jensen
Hi Kong,

IAX2 support has been added in release 0.65 of IPSwitchBoard, which is ready
for download at
http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA, Zap is next
(I just need to get a Zap card).

Thorben


 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Paul Fielding
 Sendt: 19. marts 2005 09:09
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: SV: [Asterisk-Users] IPSwitchBoard BETA
 
 Make this another vote for Zap and IAX2 monitoring :)
 
 Paul
 
 - Original Message -
 From: Thorben Jensen [EMAIL PROTECTED]
 To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
 asterisk-users@lists.digium.com
 Sent: Thursday, March 17, 2005 12:10 AM
 Subject: SV: SV: [Asterisk-Users] IPSwitchBoard BETA
 
 
  Hi Kong,
 
  No, I have no support for monitoring of Zap devices at the moment. If
  there
  is great demand for it, I will make it.
 
  Thank you
  Thorben


___
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] IPSwitchBoard BETA

2005-03-19 Thread Thorben Jensen








I will check and fix if I
find a bug. I have a new release of IPSwitchBoard scheduled for tomorrow. (I
found a few bugs myself).



Thank you for reporting

Thorben















Fra:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] På vegne af MvB
Sendt: 19. marts 2005 15:28
Til: Asterisk
 Users Mailing List - Non-Commercial Discussion
Emne: RE: [Asterisk-Users]
IPSwitchBoard BETA





Hi Thorben,

I have just installed version 0.65. When I click on an extension to dial it
dials the number that is the extension of the monitor. The weird thing is that
in the * console the dial command shows the actual extension intented to be
dialed (but it is not).

Max.

Op za, 19-03-2005 te 12:39 +0100, schreef Thorben Jensen: 

Hi Kong,IAX2 support has been added in release 0.65 of IPSwitchBoard, which is readyfor download athttp://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA, Zap is next(I just need to get a Zap card).Thorben -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] [mailto:asterisk-users- [EMAIL PROTECTED]] På vegne af Paul Fielding Sendt: 19. marts 2005 09:09 Til: Asterisk Users Mailing List - Non-Commercial Discussion Emne: Re: SV: [Asterisk-Users] IPSwitchBoard BETA  Make this another vote for Zap and IAX2 monitoring :)  Paul  - Original Message - From: Thorben Jensen [EMAIL PROTECTED] To: 'Asterisk Users Mailing List - Non-Commercial Discussion' asterisk-users@lists.digium.com Sent: Thursday, March 17, 2005 12:10 AM Subject: SV: SV: [Asterisk-Users] IPSwitchBoard BETAHi Kong,   No, I have no support for monitoring of Zap devices at the moment. If  there  is great demand for it, I will make it.   Thank you  Thorben___Asterisk-Users mailing listAsterisk-Users@lists.digium.comhttp://lists.digium.com/mailman/listinfo/asterisk-usersTo UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users






___
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

SV: [Asterisk-Users] Re: IPSwitchBoard BETA

2005-03-19 Thread Thorben Jensen
I am not sure that it will run on Mono, for now I only support it on
Windows. (I will test it on Mono later).

Thorben

 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Aldo Bergamini
 Sendt: 19. marts 2005 17:50
 Til: asterisk-users@lists.digium.com
 Emne: [Asterisk-Users] Re: IPSwitchBoard BETA
 
 [EMAIL PROTECTED] is believed to have said:
 
 Hi Kong,
 
 IAX2 support has been added in release 0.65 of IPSwitchBoard, which is
 ready
 for download at
 http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard+BETA, Zap is
 next
 (I just need to get a Zap card).
 
 Thorben
 
 Hi Thorben,
 
 IPSwitchBoard looks like a very interesting complement to an Asterisk
 installation.
 
 Do you know how to have it running on a Linux machine? I am not familiar
 with .net things: would it be possible to run it on mono?
 
 TIA
 Aldo
 
 ___
 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

___
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] Re: IPSwitchBoard BETA

2005-03-19 Thread Thorben Jensen
I sure will :-)
Thorben

 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Aldo Bergamini
 Sendt: 19. marts 2005 23:39
 Til: asterisk-users@lists.digium.com
 Emne: [Asterisk-Users] Re: IPSwitchBoard BETA
 
 [EMAIL PROTECTED] is believed to have said:
 
 I am not sure that it will run on Mono, for now I only support it on
 Windows. (I will test it on Mono later).
 
 One thing (or so) at a time is indeed a good attitude ;-) ...
 
 As soon as you'll feel to be the time to see what happens under Mono
 please let us know.
 
 Thanks
 Aldo

___
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] Parking a call in manager interface

2005-03-19 Thread Thorben Jensen
Hi Matt,

Thank you for your suggestion, it solved my problem. It's a shame that we
have to make workarounds to make simple things like call parking work from
the manager interface. I hope it will be solved in a future release.

Regards 
Thorben

 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Matt Riddell
 Sendt: 18. marts 2005 21:34
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: [Asterisk-Users] Parking a call in manager interface
 
 Thorben Jensen wrote:
  Is it possible to park a call through the manager interface? If yes;
 how?
 
 Heh.  Another person finds the manager bug.
 
 You can do it using a redirect with extrachannel, but last time I
 checked it would announce the parking slot to the caller rather than the
 person who parks the call.
 
 What I have done in SineAsterPanel (as yet unreleased) is to create a
 blank extension in extensions.conf that does
 
 exten = 888,1,MusicOnHold()
 
 and then you redirect the channel to that extension.  You have to
 maintain a reference to the call so that when someone chooses unpark,
 you redirect that channel back to the person who parked the call.  If
 you wanted company wide parking instead of putting someone on hold, you
 would need to create a database entry which stores the value for
 everyone to see.  Then anyone could choose from the list of parked calls
 to unpark.
 
 Make sense?
 
 If not, I have code for hold-style parking in C# (SharpDevelop) but have
 not yet implemented company-wide parking (I.E. where one person can park
 and the other can retrieve) because my program does not rely on an
 external database.
 
 Corydon on IRC wrote me a parking app for the manager, but it crashed
 and I haven't spoken with him since.  Maybe if you can track him down
 he'd give you the code he's already done and you could continue from
 there.
 
 --
 Cheers,
 
 Matt Riddell
 ___
 
 http://www.sineapps.com/news.php (Daily Asterisk News - html)
 http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)
 
 ___
 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

___
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


[Asterisk-Users] Parking a call in manager interface

2005-03-18 Thread Thorben Jensen








Is it possible to park a call through the manager
interface? If yes; how?



Regards

Thorben








___
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

[Asterisk-Users] Problem with Manager Interface

2005-03-18 Thread Thorben Jensen
I am trying to handle parked calls through the manager interface, but having
a lot of trouble, if I try to Park a call I try with this command:

Action: Redirect
Channel: SIP/211
Exten: 700
Context: phones
CallerID: tgj
Priority: 1

But it just doesn't work because I have no extension 700 in my dial plan
(700 is what I have configured parkedcalls to be in features.conf)

I have configured 'blind transfer' to be '#1' in features.conf so I have
also tried:

Action: Redirect
Channel: SIP/211
Exten: #1700
Context: phones
CallerID: tgj
Priority: 1

But it doesn't work.

Now I try to pick up a parked call which has been assigned to 701 like this:

Action: Originate
Channel: SIP/211
Exten: 701
Context: phones
CallerID: tgj
Priority: 1

..but the same problem it just doesn't work - What am I missing? Please
help.


I might mention that everything works fine using the hard phones.

Kind regards
Thorben


___
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


[Asterisk-Users] New Version of IPSwitchBoard-Beta

2005-03-18 Thread Thorben Jensen
Hi all,

Just to let you know that I have just released a new version, 0.65, of
IPSwitchBoard-BETA.

This is some of the fixes:

. Load IAX2 extensions as well as make calls/transfers To IAX2 (I will add
ZAP next) 
. You can monitor Parked Calls (I have a lot of problems getting parking to
work) 
. Possible to create a trace file by checking Trace on the config page 
. lot's of bugs fixed thanks to all your feedback 

Download this FREE version of IPSwichBoard here:
http://www.voip-info.org/tiki-index.php?page=IPSwitchBoard%20BETA

Regards
Thorben


___
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] IPSwitchBoard BETA

2005-03-17 Thread Thorben Jensen

 
 I've installed it and tested it, it works great, the idea is great, works
 simple enough
 for users to understand :)
 One problem though:
 If a phone registered under Monitored Extension has two
 calls, one Active and one On Hold and if I attempt a transfer via
 IPSwitchBoard
 it works fine. After that I Resume an On Hold call and attempt to transfer
 that
 call in the same manner, but instead of a call being transferred to an
 other
 user
 IPSwitchBoard initiates a new call from my phone (Monitored one) to the
 user
 I wanted to transfer a call to.
 
 Is it a bug or a feature ? :)
 
 Regards,
 Ivan

Hi Ivan,

Bug or feature, I will look at it and try to solve it.

Thank you for your interest in IPSwitchBoard
tgj


___
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


SV: [Asterisk-Users] IPSwitchBoard BETA

2005-03-17 Thread Thorben Jensen
 
 I just installed .NET 2.0 Beta, so I don't know
 if it's a problem with your app or with new .NET,
 but after a few minutes of running your app and not doing anything (the
 app
 runs idle)
 a new window appears with a following message:
 
 Timer2: Object reference not set to an instance of an object.  at
 IPS.ipdkpbx.astNewChannel(String e)
at IPS.ipdkpbx.Timer2_Tick(Object sender, EventArgs e)
 
 After I confirm the message everything seems normal but as soon as I try
 to
 do
 any kind of action IPS.exe crashes.
 
 Regards,
 Ivan

Hi Ivan,

That is a bug, I will fix it.

Regards
tgj

___
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


[Asterisk-Users] IPSwitchBoard BETA

2005-03-16 Thread Thorben Jensen
Hi all,

I have just published my last few weeks of hard work: IPSwitchBoard BETA.

Please let me know what you think and post comments on the Wiki.

http://www.voip-info.org/wiki-IPSwitchBoard+BETA

Thank you

___
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


SV: [Asterisk-Users] IPSwitchBoard BETA

2005-03-16 Thread Thorben Jensen
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Henry Devito
 Sendt: 16. marts 2005 16:17
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: [Asterisk-Users] IPSwitchBoard BETA
 
 I installed this and it seems to be working great.  Good job.  Just one
 question though,  What is the shared extensions file?
 
 
Hi Henry,

The Shared extension file is a file with extension (speed dial number)
that a number of users want to share, when IPSwitchBoard starts up, it will
merge the extensions in the shared extension file with your extensions.

You can make an extensions file by exporting extensions from IPSwitchBoard. 

Put this file on a shared network drive and point to that file and every
time IPSwitchBoard starts up, it will merge the information in that file.

regards

___
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


[Asterisk-Users] Mini Manual for IPSwitchBoard published

2005-03-16 Thread Thorben Jensen
I have just published a mini manual for IPSwitchBoard for Asterisk on the
Wiki: 

http://www.voip-info.org/wiki-IPSwitchBoard+BETA

IPSwitchBoard is a FREE Windows.NET application that will:

. Organize all your extensions (automatically retrieved from Asterisk) 
. Monitor all extensions 
. Monitor all queues 
. Log extensions in and out of queues 
. Speed Dialing 
. Shared Speed Dial files among all users of IPSwitchBoard 
. User selectable ring tones for IPSwitchBoard 
. User selectable button colors 

I hope to get a lot of feedback (good and bad) :-)

Thank you in advance
Tgj


___
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


SV: SV: [Asterisk-Users] IPSwitchBoard BETA

2005-03-16 Thread Thorben Jensen
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af John Breeden
 Sendt: 16. marts 2005 22:24
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: SV: [Asterisk-Users] IPSwitchBoard BETA
 
 Very cool ...
 
 Have you tried to compile it against Mono?
 
 -JB Hawaii

No I have not tried it yet, but will when I get a chance.

Thorben


___
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


SV: SV: [Asterisk-Users] IPSwitchBoard BETA

2005-03-16 Thread Thorben Jensen
Hi Kong,

No, I have no support for monitoring of Zap devices at the moment. If there
is great demand for it, I will make it.

Thank you
Thorben


 -Oprindelig meddelelse-
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] På vegne af Kong
 Sendt: 17. marts 2005 02:33
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: SV: [Asterisk-Users] IPSwitchBoard BETA
 
 Is there anyway that i can add in a Zap device to be monitored? So far
 what
 i can see is, its only monitoring SIP extensions.
 
 At 05:23 AM 3/17/2005, you wrote:
 Very cool ...
 
 Have you tried to compile it against Mono?
 
 -JB Hawaii
 
 Thorben Jensen wrote:
 
 Fra: [EMAIL PROTECTED] [mailto:asterisk-users-
  [EMAIL PROTECTED] På vegne af Henry Devito
 Sendt: 16. marts 2005 16:17
 Til: Asterisk Users Mailing List - Non-Commercial Discussion
 Emne: Re: [Asterisk-Users] IPSwitchBoard BETA
 
 I installed this and it seems to be working great.  Good job.  Just one
 question though,  What is the shared extensions file?
 
 
 
 Hi Henry,
 
 The Shared extension file is a file with extension (speed dial number)
 that a number of users want to share, when IPSwitchBoard starts up, it
 will
 merge the extensions in the shared extension file with your extensions.
 
 You can make an extensions file by exporting extensions from
 IPSwitchBoard.
 Put this file on a shared network drive and point to that file and every
 time IPSwitchBoard starts up, it will merge the information in that
 file.
 
 regards
 
 ___
 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
 
 
 
 
 
 ___
 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
 
 ---
 [This E-mail scanned for viruses by iRepublics.com Anti Virus Solutions]
 
 
 
 
 ---
 [This E-mail scanned for viruses by iRepublics.com Anti Virus Solutions]
 
 
 ___
 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

___
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] IPSwitchBoard BETA

2005-03-16 Thread Thorben Jensen
 
  Thorben
 
 Is source code available?? what license is it released under?
 
 --
  --

The source code is not available at the moment and the software is provided
as is - no warranties given :-)

tgj

___
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


  1   2   >