Jump to content

Tom Wellige

Root Moderator
  • Posts

    4,310
  • Joined

  • Last visited

  • Days Won

    117

 Content Type 

Profiles

SwyxPEDIA Wiki

Zendesk Integration

Persistent Variables

Longest Waiting

VBScript build in functions

GSE build in functions (VBScript)

Server Script API (VBScript)

GSE build in functions (Lua)

Server Script API (Lua)

Function Collection (VBScript)

Function Collection (Lua)

IPS Integration

Jira Service Integration

Forums

Blogs

Downloads

Everything posted by Tom Wellige

    Great to see, that the old project is back to life! Thanks Mathew!
  1. Ganz genau. Lege Dir bei Deinem Testbenutzer eine Regel mit dem Namen PreProcessing an, und füge das Call Routing dort ein. Wenn das PreProcessing anschließend global für alle Benutzer gemacht werden soll, sollte die Regel auch mit allen Benutzern umgehen können. D.h. auch immer irgendeinen Weg über "Regel übersprungen" enthalten, damit das Call Routing eines Benutzers (Umleitungen, etc. pp.) noch greifen können. Wenn die Regel fertig ist und ausreichend getestet wurde, kann Du mit dem IpPbx File Explorer (SwyxWare DVD - Swyx - Tools - File Explorer) die beiden Dateien rulePreProcessing.rse rulePreProcessing.vbs aus dem USER Scope des Testbenutzers lokal auf Deinen Rechner herunter laden. Im nächsten Schritt lädst Du die beiden Datein wieder hoch, nun aber in den GLOBAL Scope. Ab diesem Augenblick wird die PreProcessing Regel für jeden Anruf auf einen beliebigen Benutzer gestartet. Wenn etwas nicht klappen sollte, lösche die beiden Dateien aus dem GLOBAL Scope und korrigiere und teste die Regel auf dem Testbenutzer. Anschließend kannst Du sie wieder global hinterlegen. Wenn Du das global nicht willst, kannst Du die beiden Dateien auch in den USER Scope aller relevanten Benutzer hochladen.
  2. Oops, sorry. Das kommt dabei heraus wenn man das nur runter schreibt und nicht ausprobiert. Das muss "sGroup" heissen. Ich passe das gleich mal oben an.
    Great tool that provides functionality missing for a long time within SwyxWare/Netphone.
  3. Wenn Du willst, kannst Du meinen Vorschlag weiter verfolgen: Nimm Dir einen Testbenutzer und richte ihm eine neue GSE egel ein kopiere den folgenden Code per Copy&Paste in das Textfeld auf der Parameter Seite des Start Blocks Please find the IsUserInGroup function in the Function Collection (VBScript) and Function Collection (Lua) area of the Programming References section of the SwyxPEDIA here on Swyx Forum. Verbinde den Start Block mit einem Skript Code Block. Auf der Parameter Seite fügst Du folgenden Code ein (alles was dort vorher drin gestanden hat bitte überschreiben!) if IsUserInGroup ("AAA") then UseExit = 1 elseif IsUserInGroup ("BBB") then UseExit = 2 elseif IsUserInGroup ("CCC") then UseExit = 3 elseif IsUserInGroup ("DDD") then UseExit = 4 elseif IsUserInGroup ("EEE") then UseExit = 5 else UseExit = 0 end if Die AAA, BBB, etc. sind jeweils Gruppennamen oder Gruppennummern (geht beides) wo Du prüfen musst, ob der Testbenutzer dort Mitglied ist. D.h. die kannst/musst Du entsprechend anpassen. Auf der Verbindungen Seite des Skript Code Blocks mußt Du noch weitere Ausgänge (1-5 gemäß Beispielcode) einschalten. Hinter jeden Ausang des Blocks kannst Du nun einen Durchstellen Block setzen, der auf die jeweilige Gruppe zustellt. Ergebnis sollte sein: Wenn der aktuelle Skriptbenutzer (Dein Testbenutzer) Mitglied in Gruppe AAA ist, wird der Anrufer an Gruppe AAA durchgestellt. Wenn er Mitglied in Gruppe BBB ist wird der Anrufer an BBB durchgestellt, u.s.w. Damit kann ein Administrator ganz einfach über die Gruppenzugehörigkeit vom Testbenutzer festlegen, wo es noch überall klingeln soll. Wenn das das ist was Du brauchst, können wir uns darüber unterhalten, wie Du dieses GSE Regel auf alle relevanten Benutzer verteilt bekommst.
  4. View File Open CDR Please refer for all discussions (forum) for this project to the forum. Please refer for documentation (setup, usage, etc.) for this project to the SwyxPEDIA. Find the license information here! If you want to get involved into this project please refer to this topic. Submitter Tom Wellige Submitted 11/26/2017 Category Open CDR  
  5. Version 2.1

    257 downloads

    Please refer for all discussions (forum) for this project to the forum. Please refer for documentation (setup, usage, etc.) for this project to the SwyxPEDIA. Find the license information here! If you want to get involved into this project please refer to this topic.
  6. SQLite3 ist eine kleine Datenbankanwendung die auch unter Windows läuft. Die Software ist kostenlos, sehr klein und einfach anzuwenden. Eigentlich braucht man nur 3 Dateien: sqlite3.exe, sqlite3.dll und sqlite3.def. Mit einem Doppelklick auf die exe startet das Programm und sieht so ähnlich wie eine Eingabeaufforderung aus. Am Prompt kann man eine bestehende Datenbank öffnen, falls es sie noch nicht gibt wird sie einfach angelegt. Zum öffnen einer Datenbank gibt man folgendes ein: (der Punkt am Anfang ist wichtig) sqlite> .open cdr.db (wenn die Datenbank im gleichen Verzeichnis ist wie die SqLite.exe), oder sqlite> .open C:\inetpub\wwwroot\opencdr\cdr.db Hier liegt unsere Datenbank für OpenCDR. Wie oben schon erwähnt wird die Datenbank ohne Rückfrage angelegt falls sie noch nicht vorhanden ist. Zum Ansehen der Daten in der Datenbank ist dieser Befehl: sqlite> select * from cdr; Alle Datensätze löscht dieser Befehl: sqlite> delete from cdr; Hier noch schnell ein kompletter Befehlssatz um eine Datenbank anzulegen. Das Beispiel ist aus einer weiteren Anwendung von mir wo die Position der Mitglieder eine Gruppe aus der SwyxWare gespeichert werden kann. Datenbank anlagen mit dem Namen Members: sqlite> .open Members.db Tabelle Members anlegen mit den Feldern GroupID, UserID und Position: sqlite> create table Members (GroupID INT, UserID INT, Position INT); Abfrage der Datenbank (hier noch leer) sqlite> select * from Members; Datensatz anlegen: sqlite> insert into Members values (2,8,0); Abfrage der Datenbank mit den bereits eingetragenen Werten: sqlite> select * from Membersr; 2|8|0 sqlite> Abfrage der Datenbank Eigenschaften sqlite> .show echo: off eqp: off explain: auto headers: off mode: list nullvalue: "" output: stdout colseparator: "|" rowseparator: "\n" stats: off width: filename: Members.db sqlite>
  7. Tom Wellige

    General

    Open CDR is the follow-up project of the initial Swyx Web CDR project, that was started in 2007 by Randall Kam but was later on abandoned. Forum user Mathew picked it up again, extended it and made it as Open CDR available again to the community. The current state of the project is, that the Open CDR web application is available in English and German language. The added installation script and documentation is for the moment in German language available only. This is a rough list of all included features: Imports SwyxWare/Netphone Call Detail Records (CDR) from the default text file into an own database (SQLite3) Query from/to/destination names and numbers between specific time periods Query between different time periods Query different call states Follow Calls to where they are transferred Export data to MS Excel (via .csv file) Delete data from the database. Includes installation to setup web server and database properly A good overview of the functionality can be found in the documentation. Open CDR Kurzanleitung (in German language only!) Get involved in Swyx Forum projects
  8. Tom Wellige

    History

    Version 2.x 26.11.2017 - Open CDR v2.1 Version 1.x 28.11.2007 - Swyx Web CDR v1.0.3 26.11.2007 - Swyx Wev CDR v1.0.2
  9. Tom Wellige

    Support

    This is a Swyx Forum open source project. All support, enhancement and bug requests must be placed into the project forum. No other support is available! In regard of the license being provided there is neither a guaranteed response time for support requests nor a guaranteed solution.
  10. Tom Wellige

    License

    OpenCDR This is a Swyx Forum Open Source Project. Copyright (c) 2007-2017 by Swyx Forum Copyright (c) 2007-2017 by Randall Kam Copyright (c) 2007-2017 by Mathias Storck All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANT-ABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This project makes use of the following projects: SQLlite 3.18 http://www.sqlite.org/ Copyright Release for Contributions To SQLite SQLite is software that implements an embeddable SQL database engine. SQLite is available for free download from http://www.sqlite.org/. The principal author and maintainer of SQLite has disclaimed all copyright interest in his contributions to SQLite and thus released his contributions into the public domain. In order to keep the SQLite software unencumbered by copyright claims, the principal author asks others who may from time to time contribute changes and enhancements to likewise disclaim their own individual copyright interest. Because the SQLite software found at http://www.sqlite.org/ is in the public domain, anyone is free to download the SQLite software from that website, make changes to the software, use, distribute, or sell the modified software, under either the original name or under some new name, without any need to obtain permission, pay royalties, acknowledge the original source of the software, or in any other way compensate, identify, or notify the original authors. Nobody is in any way compelled to contribute their SQLite changes and enhancements back to the SQLite website. This document concerns only changes and enhancements to SQLite that are intentionally and deliberately contributed back to the SQLite website. For the purposes of this document, "SQLite software" shall mean any computer source code, documentation, makefiles, test scripts, or other information that is published on the SQLite website, http://www.sqlite.org/. Precompiled binaries are excluded from the definition of "SQLite software" in this document because the process of compiling the software may introduce information from outside sources which is not properly a part of SQLite. The header comments on the SQLite source files exhort the reader to share freely and to never take more than one gives. In the spirit of that exhortation I make the following declarations: 1. I dedicate to the public domain any and all copyright interest in the SQLite software that was publicly available on the SQLite website (http://www.sqlite.org/) prior to the date of the signature below and any changes or enhancements to the SQLite software that I may cause to be published on that website in the future. I make this dedication for the benefit of the public at large and to the detriment of my heirs and successors. I intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to the SQLite software under copyright law. 2. To the best of my knowledge and belief, the changes and enhancements that I have contributed to SQLite are either originally written by me or are derived from prior works which I have verified are also in the public domain and are not subject to claims of copyright by other parties. 3. To the best of my knowledge and belief, no individual, business, organization, government, or other entity has any copyright interest in the SQLite software as it existed on the SQLite website as of the date on the signature line below. 4. I agree never to publish any additional information to the SQLite website (by CVS, email, scp, FTP, or any other means) unless that information is an original work of authorship by me or is derived from prior published versions of SQLite. I agree never to copy and paste code into the SQLite code base from other sources. I agree never to publish on the SQLite website any information that would violate a law or breach a contract. Signature: Date: Name (printed): https://www.sqlite.org/copyright.html PHPManagerForIIS 1.2.0 https://phpmanager.codeplex.com Microsoft Public License (Ms-PL) This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. 1. Definitions The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. A "contribution" is the original software, or any additions or changes to the software. A "contributor" is any person that distributes its contribution under this license. "Licensed patents" are a contributor's patent claims that read directly on its contribution. 2. Grant of Rights (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. 3. Conditions and Limitations (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchant-ability, fitness for a particular purpose and non-infringement. https://phpmanager.codeplex.com/license PHP 7.1 http://www.php.net The PHP License, version 3.01 Copyright (c) 1999 - 2017 The PHP Group. All rights reserved. Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name "PHP" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact group@php.net. 4. Products derived from this software may not be called "PHP", nor may "PHP" appear in their name, without prior written permission from group@php.net. You may indicate that your software works in conjunction with PHP by saying "Foo for PHP" instead of calling it "PHP Foo" or "phpfoo" 5. The PHP Group may publish revised and/or new versions of the license from time to time. Each version will be given a distinguishing version number. Once covered code has been published under a particular version of the license, you may always continue to use it under the terms of that version. You may also choose to use such covered code under the terms of any subsequent version of the license published by the PHP Group. No one other than the PHP Group has the right to modify the terms applicable to covered code created under this License. 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes PHP software, freely available from <http://www.php.net/software/>". THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This software consists of voluntary contributions made by many individuals on behalf of the PHP Group. The PHP Group can be contacted via Email at group@php.net. For more information on the PHP Group and the PHP project, please see <http://www.php.net>. PHP includes the Zend Engine, freely available at <http://www.zend.com>.
  11. Was ist OpenCDR? OpenCDR ist eine Webanwendung auf der SwyxWare/ Netphone die Daten aus der cdr0.txt über einen Webbrowser angezeigt. Es geht hier nur um Gesprächsdaten, es erfolgt keine Gebührenauswertung. Die Anwendung wurde ursprünglich von Randall Kam in Jahr 2007 entwickelt und im alten Forum vorgestellt. Nähere Infos stehen in der Textdatei "license.txt" im Ordner "OpenCDR". Ich habe sie nur etwas überarbeitet, einige neue Funktionen eingebaut, auf Deutsch übersetzt und eine Installationsroutine geschrieben. Bitte nur auf einem Testsystem installieren, die Anwendung ist nicht gegen Angriffe optimiert und soll nur zeigen wie man so etwas machen kann. Welche Funktionen gibt es? Über einige Filter kann in der Anwendung nach bestimmten Eigenschaften gefiltert werden, z.B. Ruf von, Ruf an, Datum usw. Aktuelle Daten aus der cdr0.txt können über eine Funktion neu in die Datenbank eingelesen werden. (Beinhaltet eine kleine SqLite Datenbank) Abfrage kann in eine Excel Tabelle exportiert werden. Daten können aus der Datenbank gelöscht werden (alle oder mit bestimmtem Datum) Wie sieht das aus? Abfrage Ergebnis Top 50 Setup Installation Die Installation erfolgt über ein Powershell Script. Installiert werden der IIS Webserver mit CGI und Management Console, PHP Version 7.1, .Net Framework Funktionen 3.5, Visual C++ 2015 Redistributable und PHPManagerForIIS. Die Daten aus der CDR0.txt werden in einer kleinen SqLite Datenbank gespeichert. Per Aufgabenplaner wird ein automatisierter Import der Daten in die Datenbank täglich um 22:00 Uhr erzeugt. Alle nötigen Rechte werden passend gesetzt, z.B. lesender Zugriff auf die CDR0.txt. Nach erfolgreicher Installation ist das Webinterface über die Adresse http://IP_DES_SERVERS/opencdr erreichbar. Was sollte man noch wissen? Zur Installation wird eine aktive Internet Verbindung benötigt um die .Net Framework Funktionen zu installieren. Die Anwendung läuft auf SwyxWare und Netphone. (Die Pfade werden automatisch angepasst. Swyx bzw. T-Com). Windows 2012 Server habe ich benutzt, aber Server 2008 sollte eigentlich auch funktionieren. PHP auf einem Server stellt immer ein Risiko dar. Der Server sollte nicht aus dem Internet erreichbar sein! Bitte so etwas immer erst mal, oder besser nur auf einem Testsystem ausprobieren. Die cdr0.txt wird von der Anwendung nur gelesen, an der Datei selbst wird nichts geändert. Anbei noch ein Crash Kurs in Sachen Sqlite als eigenes PDF Dokument. Eigentlich braucht das keiner, ich hatte aber Spaß beim Programmieren und ausprobieren.
  12. Kurzanleitung Open Admin X Nach dem Start des Tools sieht die Oberfläche in etwa so aus. (Screenshot noch aus Vorversion) Erklärungen Hier kann die Gruppe ausgewählt werden für welche die Änderungen durchgeführt werden soll. Funktionen ein- bzw. ausschalten. Es können mehrere Funktionen ausgewählt werden. Diese werden dann alle beim Klick auf den OK Button (3) ausgeführt. OK Button. Startet alle ausgewählten Funktionen der Reihe nach. Ausgabe Fenster. Hier werden alle Meldungen der Funktionen ausgegeben. Der Button "Ausgabe löschen" leert den Inhalt des Ausgabefensters. Hier kann zwischen den Tabs geblättert werden. Im Fenster können 8 Tabs angezeigt werden. Der 9. Tab ist erst nach einem Klick auf den Pfeil (5) sichtbar. Der "Cancel" Button schließt das Fenster und beendet die Powershell. Mit dem "Hilfe" Button wird zu jedem TAB eine eigene kleine Information zu den Funktionen angezeigt. In der aktuellen Version gibt es noch den Button "Zurücksetzen" Voraussetzungen für einen fehlerfreien Programmstart Windows Server 2008 mit Servicepack 1 und Update auf Powershell 4 SP1: https://www.microsoft.com/de-de/download/details.aspx?id=5842 PS4: https://www.microsoft.com/de-de/download/details.aspx?id=40855 oder Windows Server 2012 Installierte SwyxWare bzw. Netphone (getestet mit Version 2015 R4 und der neuen Version 11). Auf dem Netphone Server als Administrator anmelden. Das Programm sollte am besten auf den Desktop des Netphone Servers kopiert werden. Die Powershell führt im Standard keine Scripte aus die nicht signiert sind. Um das Programm ausführen zu können muss diese Windows Vorgabe geändert werden. Hierzu die Powershell als Administrator starten und im Fenster diesen Befehl eingeben: Set-ExecutionPolicy RemoteSigned und die ENTER Taste drücken. Die Meldung Ausführungsrichtlinie ändern mit "j" bestätigen. Mit diesen Einstellungen sollte das Programm ohne Fehlermeldungen starten und alle Funktionen können genutzt werden.
  13. Allgemeines Das Script muss auf den Swyx bzw. Netphone Server kopiert und als Administrator ausgeführt werden. Am einfachsten meldet man sich als Administrator auf dem Server an und kopiert das Script auf den Desktop des Servers. Unterstützt werden Windows Server 2008 sowie Windows 2012 Server. Windows 2008 benötigt allerdings das ServicePack 1 und das Update der Powerhell (Windows6.1-KB2819745-x64-MultiPkg.exe) auf Version 4. Damit die Powershell unsignierte Scripte ausführt, muss dies erst freigeschaltet werden. Dazu die Powershell mit Administrator Rechten starten (rechte Maustaste auf das Powershell Icon und "als Administrator starten" anklicken), mit dem Befehl Set-ExecutionPolicy RemoteSigned und der Eingabe von J und ENTER sich die erforderlichen Rechte erteilen. Danach sollte sich das Script ausführen lassen. Dazu mit der rechten Maustaste auf das Script klicken und "öffnen mit Windows Powershell auswählen. So sollte es so aussehen: Nun kann das Tool benutzt werden. Hier noch einige Informationen zum Tool: Beim Start wird unter anderem geprüft welche Powershell Version und welche Windows Version installiert ist und dem entsprechend die Funktionen angepasst. Das Tool funktioniert sowohl auf einer Netphone als auch auf einer SwyxWare. Pfade werden hier automatisch angepasst. Beim Start wird ein Backup der aktuellen Datenbank aus Sicherheitsgründen automatisch angelegt. (kann auch über das Script wiederhergestellt werden) Eine neue Gruppe "Konfig-Gruppe" wird beim Start automatisch angelegt Falls dem aktuellen Benutzer kein Swyx/Netphone Account zugewiesen ist, wird beim Start automatisch dem Swyx/Netphone User "Konferenz" der aktuelle Benutzer zugewiesen (Facade Fehler). Beim beenden des Scripts wird das wieder rückgängig gemacht. Unter Windows Server 2008 sind einige Funktionen nicht verfügbar (z.B. Windows Lizenz auslesen) Menüpunkt 1: Windows Einstellungen Menüpunkt 2: SwyxWare/Netphone Reg-Keys Menüpunkt 3: Rufumleitungen für alle Nebenstellen Menüpunkt 4: Rufumleitungen für Mitglieder der Konfig-Gruppe Menüpunkt 5: Client Einstellungen für Mitglieder der Konfig-Gruppe Menüpunkt 6: Weitere Client Einstellungen für Mitglieder der Konfig-Gruppe Menüpunkt 7: Kopieren von Namenstasten Menüpunkt 8: Einstellungen der IP-Telefone Menüpunkt 9: Systeminformationen Menüpunkt 10: Client Zertifikate erstellen / löschen für Mitglieder der Konfig-Gruppe Menüpunkt 11: FaxClient Einstellungen für Mitglieder der Konfig-Gruppe Menüpunkt 12: Windows Features installieren Menüpunkt 13: Leitungstasten kopieren für Mitglieder der Konfig-Gruppe Menüpunkt 99: Backup / Restore der IpPbx Datenbank
  14. Ich habe da ein eigenes Topic draus gemacht, weil das erst einmal nichts mit globalem Call Routing zu tun hat. Prinzipiell kann man per eigenem Skript Code SwyxWare Benutzer Gruppen auflösen. Wenn es eine feste Anzahl von Gruppen gibt, in denen der aktuelle Benutzer wahlweise stecken kann, dann könnte man in jede dieser Gruppen hineinschauen, wo der Benutzer denn gerade drin ist, um den Ruf dann anschliessend dort hin zu verbinden.
  15. Geht es Dir jetzt darum, dieses Call Routing global für alle Benutzer zu hinterlegen (siehe Title dieses Topics), oder ganz prinzipiell wie man ein Call Routing wie Du es beschrieben hast baut?
  16. Persistent Variables View File Please refer to the Project Page for all details regarding the Persistent Variables. Please refer to the Forums to discuss the Persistent Variables or for support reuqests. Please refer for documentation (setup, usage, etc.) for this extension to the Project Page. Find the license information on the Project Page. If you want to get involved into this project please refer to this topic. As with all other Swyx Forum Open Source Projects, Support is EXCLUSIVELY provided in the Project Froum (see link above). Submitter Tom Wellige Submitted 01/25/2011 Category Open ECR Extensions  
  17. Install Guide View File Please use the project forum for comments and questions. Submitter Tom Wellige Submitted 08/07/2010 Category Conference Room Manager  
  18. Conference Room Manager View File Please use the project forum for comments and questions. Submitter Tom Wellige Submitted 08/07/2010 Category Conference Room Manager  
  19. Open Queue View File This is a beta release of Open Queue v2.1, coming as a patch packet to update an existing Open Queue v2.0 (buils 2.0.5) installation. A previously delivered "Open Queue v2.1 Pre" or "Open Queue v2.1 Beta 1" package can also be updated with this beta version. You need to have Open Queue v2.0 (build 2.0.5) installed prior to install this version. Please use the project forum for comments and questions. Submitter Tom Wellige Submitted 01/09/2011 Category Open Queue  
  20. Manual View File Please use the project forum for comments and questions. Submitter Tom Wellige Submitted 07/25/2008 Category Open Queue  
  21. Opene Queue View File There is a newer version in form of a patch update available. Please install v2.1 Beta 2 on top of this version as it comes with a set of needed bug fixes. Please use the project forum for comments and questions. Submitter Tom Wellige Submitted 07/25/2008 Category Open Queue  
  22. Version 1.0.0

    40 downloads

    This project provides a GSE Action to add "Longest Waiting Hunt Group" functionality to the SwyxWare. An included example GSE Rule demonstrates the usage as simple replacement for the GSE Connect To block. Please refer to the Project Page for all details regarding the Longest Waiting Hunt Group. Please refer to the Forums to discuss the Longest Waiting Hunt Group or for support requests. Please refer to the Project Page for a complete documentation of the Longest Waiting Hunt Group. If you want to get involved into this project please refer to this topic. As with all other Swyx Forum Open Source Projects, Support is EXCLUSIVELY provided in the Project Froum (see link above).
  23. Longest Waiting Hunt Group View File This project provides a GSE Action to add "Longest Waiting Hunt Group" functionality to the SwyxWare. An included example GSE Rule demonstrates the usage as simple replacement for the GSE Connect To block. Please refer to the Project Page for all details regarding the Longest Waiting Hunt Group. Please refer to the Forums to discuss the Longest Waiting Hunt Group or for support requests. Please refer to the Documentation for a complete documentation of the Longest Waiting Hunt Group. If you want to get involved into this project please refer to this topic. Submitter Tom Wellige Submitted 11/19/2017 Category Open ECR Extensions  
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.