<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.innovaphone.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=K.edmonds</id>
	<title>innovaphone wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.innovaphone.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=K.edmonds"/>
	<link rel="alternate" type="text/html" href="https://wiki.innovaphone.com/index.php?title=Special:Contributions/K.edmonds"/>
	<updated>2026-05-10T15:22:10Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.3</generator>
	<entry>
		<id>https://wiki.innovaphone.com/index.php?title=Howto:How_To_Send_Additional_Voicemail_MWIs_within_a_PBX&amp;diff=14613</id>
		<title>Howto:How To Send Additional Voicemail MWIs within a PBX</title>
		<link rel="alternate" type="text/html" href="https://wiki.innovaphone.com/index.php?title=Howto:How_To_Send_Additional_Voicemail_MWIs_within_a_PBX&amp;diff=14613"/>
		<updated>2009-07-30T10:19:31Z</updated>

		<summary type="html">&lt;p&gt;K.edmonds: /* Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Applies To==&lt;br /&gt;
This information applies to&lt;br /&gt;
&lt;br /&gt;
* innovaphone Voicemail&lt;br /&gt;
Build 60039 and later&lt;br /&gt;
* IPXXX with PBX, V6, SR1 and later&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Keywords: voicemail, mwi, --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==More Information==&lt;br /&gt;
Up to now Message Waiting Indications (MWIs) could only be sent to the owner of a voicemail box. This arcticle explains how MWIs can be sent towards other endpoints within a PBX. For instance, sharing of a single voicemail box among several receptionists becomes possible.&lt;br /&gt;
The approach described here, realizes the transmission of additional MWIs by an extra XML script that is to be placed into the &amp;quot;&#039;&#039;personal/&#039;&#039;&amp;quot;-directory of the user, who owns the voicebox that is about to be shared.&lt;br /&gt;
&lt;br /&gt;
===Configuration Description===&lt;br /&gt;
A few preconditions are assumed:&lt;br /&gt;
&lt;br /&gt;
* A voicemail object &#039;&#039;66:vm&#039;&#039; is existing.&lt;br /&gt;
&lt;br /&gt;
* A user &#039;&#039;49:Klaus&#039;&#039; is existing. Klaus has created his voicemail box, which is represented on the harddisk underneath the directory &#039;&#039;Klaus/&#039;&#039;. The number of his voicemail box is &#039;&#039;6649&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* Klaus wants to send MWIs to his own ip phone and in addition to his colleague&#039;s ip phone. The colleague appears in the PBX as &#039;&#039;48:Hans&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Configuration===&lt;br /&gt;
&lt;br /&gt;
* Create the following content within an XML file mwi.xml&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
	&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;&lt;br /&gt;
	&amp;lt;voicemail xmlns=&amp;quot;http://www.innovaphone.com/xsd/voicemail6.xsd&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;function define=&amp;quot;Main&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;pbx-mwi e164=&amp;quot;49&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;/function&amp;gt;    &lt;br /&gt;
	&amp;lt;/voicemail&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Copy the file mwi.xml once and only into the directory &#039;&#039;...Klaus/personal/&#039;&#039;. &lt;br /&gt;
**&#039;&#039;&#039;Note:&#039;&#039;&#039;Do not copy the file into directories of other users. Only the box-owner will need such an mwi.xml within his personal directory. Additional destinations (other than &#039;&#039;48&#039;&#039;) must be added into this single script file.&lt;br /&gt;
&lt;br /&gt;
* Now configure an additional Message Waiting function key at Hans&#039; ip phone underneath &#039;&#039;Configuration/RegistrationX/Function Keys&#039;&#039;. Enter &#039;&#039;6649&#039;&#039; into the field &#039;&#039;Message Center Account/Number&#039;&#039;. Select &#039;&#039;blink&#039;&#039; as &#039;&#039;Active State/LED&#039;&#039;. Select &#039;&#039;letter&#039;&#039; as &#039;&#039;Active State/icon&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
The script &#039;&#039;vm.xml&#039;&#039; just schedules an MWI towards Klaus&#039; ip phone by means of:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
	&amp;lt;pbx-mwi/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The main script &#039;&#039;vm.xml&#039;&#039; keeps watching for the presence of the sub-script &#039;&#039;Klaus/personal/mwi.xml&#039;&#039;.&lt;br /&gt;
The sub-script &#039;&#039;mwi.xml&#039;&#039; will be executed and schedules an additional MWI by explicitely nominating the extension of Hans&#039; ip phone:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
	&amp;lt;pbx-mwi e164=&amp;quot;48&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Known Problems===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Related Articles == --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Howto|{{PAGENAME}}]]&lt;/div&gt;</summary>
		<author><name>K.edmonds</name></author>
	</entry>
	<entry>
		<id>https://wiki.innovaphone.com/index.php?title=Freeedit:Wiki_Edit_Sandbox&amp;diff=14501</id>
		<title>Freeedit:Wiki Edit Sandbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.innovaphone.com/index.php?title=Freeedit:Wiki_Edit_Sandbox&amp;diff=14501"/>
		<updated>2009-07-14T11:47:24Z</updated>

		<summary type="html">&lt;p&gt;K.edmonds: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Bold text&#039;&#039;&#039;This is a dummy article to safely try editing wiki articles.&lt;br /&gt;
&lt;br /&gt;
= Wiki Syntax ([[Help:Formatting|more about formatting]], [[Help:Contents|generic help]]): = &lt;br /&gt;
&lt;br /&gt;
Italic &#039;&#039;word&#039;&#039;: &amp;lt;code&amp;gt;&#039;&#039;word&#039;&#039;&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Bold &#039;&#039;&#039;word&#039;&#039;&#039;: &amp;lt;code&amp;gt;&#039;&#039;&#039;word&#039;&#039;&#039;&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
:Indented line: &amp;lt;code&amp;gt;:line&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# numbered list item: &amp;lt;code&amp;gt;# list item&amp;lt;/code&amp;gt;&lt;br /&gt;
## numbered list sub item: &amp;lt;code&amp;gt;## list item&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* dotted list item: &amp;lt;code&amp;gt;* list item&amp;lt;/code&amp;gt;&lt;br /&gt;
** dotted list sub item: &amp;lt;code&amp;gt;** list item&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hidden search tag: &amp;lt;!-- hiddensearchtag --&amp;gt; &amp;lt;code&amp;gt;&amp;amp;lt;!-- hiddensearchtag --&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Play Arena =&lt;br /&gt;
&amp;lt;!-- ************************************************ Edit below this line ************************************************ --&amp;gt;&lt;br /&gt;
Christoph Hanken, Paragon Data GmbH&lt;br /&gt;
Jonas Teckentrup, Paragon Data GmbH&lt;br /&gt;
Porretta Mauro, &#039;&#039;&#039;SARTE S.p.A. Italy&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
Kevin Edmonds, &#039;&#039;&#039;Consult Partner GmbH&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>K.edmonds</name></author>
	</entry>
</feed>