SyrinXVoice Zarafa Webaccess plugin.
Version 1.0
Author: Johnny Smit; 
Company: Combird.
License: AGPL.

Description:

This plugin will add a new option to the right-click menu in the contacts page of the webaccess 
client. This option will allow calling the customer through use of asterisk.

To setup this plugin, please copy the folder /syrinxvoice (with all its contents) into the:
/zarafa-webaccess/plugins/ folder.

Then, alter the /syrinxvoice/config.php and set the parameters:

PLUGIN_SYRINX_ECRYPTKEY 	- this parameter has to do with encryption of the current logged in 
				  			  user on the webserver. customizing this will ensure more security.
SYRINX_MAN_PWS				- The Syrinx server password.
SYRINX_MAN_USR				- The Syrinx server username.
SYRINX_MAN_PORT				- The port to connect to.
SYRINX_SERVER_IP			- The IP the Syrinx server is hosted on.
SYRINX_DIAL_PREFIX			- This is the prefix to dialling, which is appended before all numbers called.
				  			  eg) Prefix is set to '0', and you are calling 1234. The system will attempt to 
				  			  call 01234.

After that, open up the file users.php and append all the users which will be using the system.
Append all users into the array:

$users = array(
	"User1@domain.com" => "01",
	"User2@domain.com" => "EXTENTION_NUMBER"
	);

Please note that the LAST user, does not end with a ','.
all items must look like "  something1@somewhere2.something3   " => "Number"
Where: 	something1 is the user's LOGIN username.
  	  	somewhere2 is the local domain (unused)
  		something3 is the .com or .nl etc. Which also is (unused).
  		Number is a number of the internal telephone number, such as 001, 002 etc. 
  		The number must be higher then zero!!!



