• News
  • Idefisk
  • Tools
  • Tutorials
  • Forum
  • Reviews
  • VoIP Providers
  • Archives
  • Gallery
ZOIPER softphone
Back to Tutorials

6.43.2. Voicemail Example 2

Example

In this basic example we will show you:
* how to send e-mail notification messages
* how to attach audio files to notification messages
* how to customize the notification messages
* how to use voicemail.conf keywords in order to reduce large amounts of HDD usage
* how to use macros in order to simplify extensions.conf


Requirements - this tutorial is the continuation of VoiceMail example 1. This means that we will use the configuration files (the SIP/IAX2 accounts,the mailbox accounts and the extensions) that were set up there. Here are the configuration files from previos example:
- iax.conf
- sip.conf
- extensions.conf
- voicemail.conf


How to send notification messages - in order to change a notification message we will need a working mail application (for this example we will use sendmail). Check if you have already installed sendmail.
For Fedora:
fedora_mail_check.gif
For Debian:
debian_mail_check.gif

If you don't have sendmail installed (or other application with the same functions - sending mails) you should install it by using either `yum` or `rpm` for Fedora, and `apt-cache` and `apt-get` or `dpkg` for Debian. This example won't cover the installation of those utilities. However if you feel difficulties check sendmail, qmail and postfix home pages.

Returning to Asterisk. By default Asterisk uses "/usr/bin/sendmail -t" as mail application if you are using different mail application or your path is different you should specify it by using `mailcmd` keyword. In our tutorial we will use the same location but we will specify it in order to show how to use this keyword.
mailcmd_sendmail.gif

In order to send a notification message to a certain user we will have to specify his/hers e-mail address. For our example we will use our imaginary company's mail server named mail.company.com
setting_mail_accounts.gif

Let's test it out. In the Asterisk console type `dial 101@internal`. This command will dial extension `101` from the `internal` context. If you have registered your account from your phone, do not answer it. When you see that the voicemail has started recording the messages type `hangup`
making_call_wth_voicemail.gif

And here is the result in our mail:
mail_result_bez_attach.gif

How to send the audio message as an attachment? Asterisk sends the mail with attachment only if the `attach` keyword's value is set to `yes` for the current account (specified either by general or by per-user option). Asterisk sends the first format specified in `format` keyword. In our configuration file this will be the `wav49` format. However we can override this by specifying one of the other formats (that are been specified) with the keyword `attachfmt`. Additionally we will specify attachfmt per-user to the two mailboxes in [bosses] context.
setting_attach.gif

And here is the result:
tmp.gif


How to customize our notification mails - there are ways to customize the notification messages that we are sending. We can adjust almost everything related to the message. We can change the Subject of the mail, the mail's body, the sender, the date format... We are going to use every possible keyword that customize the message. However you may prefer to let some things in their default settings.
Sender - by using the `severemail` keyword we will specify a custom e-mail.
Date format - we will set a custom time/date format by using the `emaildateformat` keyword. Note that the valid arguments at our tutorial
Subject - we will set a custom subject and also disable the `PBX` part of the string. We will use two keywords: `emailsubject` and `pbxskip`
Body - we will set a custom body (the text message) of our notification message by using the `emailbody` keyword
Here is the example of the customization that we made:
mail_customatisation.gif

In our example we are saving two formats. A typical voicemail message with length of about one minute will take about 150KB per file, which makes a 300KB per message. Let every account have approximately twenty messages saved. This makes 6MB per account. We have fourteen accounts which makes approximately 84MB. Now imagine you have one hundred mailboxes, not just fourteen. This will make about 600MB... How about one thousand accounts? Note that we are not saving the large audio formats as wav. We have to make some restrictions in order to reduce the large amount of disk space needed.
Sometimes when a user hears a voicemail greeting, he doesn't leave a message and hangs up - however this will leave an empty voicemail which will take some space. In order to restrict this behavior we will use the `minmessage` keyword. A message with length is less than five seconds can't include much information. That's why we won't save messages with length less than five seconds
	minmessage=5
Sometimes users start recording very long messages. We doubt that anyone will listen a message longer than two minute (most commonly, the messages are containing information such as "It is Peter. The server is down. Call me ASAP." or "Hi, it's Philip. Please call me when you have a completed version of the tutorial."). Let's lower the maximum length of the messages to two minutes.
	maxmessage=120
Sometimes users forget to hang up the call, and this results in very long messages. We will activate the silence detector (by using `maxsilence` and `silencethreshold` keywords). If Asterisk detects (the silencethreshold value will define what is silence and what isn't) a longer silence than maxsilence value, the server will hang up the call.
	silencethreshold=96
	maxsilence=5
We can also set a lower value to the `maxmsg` keyword in order to decrease the maximum amount of voicemail messages per account
maxmsg=20
There is an extreme way to decrease the required space for certain account(s). We will show it on the mailboxes in the [secretary] context. We will send the message as an attachment and then we will delete the message itself.
2010 => 1234,Mila Hook,mila.hook@mail.company.com,,attach=yes|delete=yes
2011 => 1235,John Dow,john.dow@mail.company.com,,attach=yes|delete=yes
2012 => 1236,Dacy Even,dacy.even@mail.company.com,,attach=yes|delete=yes
In this way no messages will be saved on our disk. All messages will be e-mailed on the respective e-mail.

adding_delete.gif

Dealing with many account might cause you lot's of trouble. Especially when it is up to managing `extensions.conf`. Here we will offer you a solution which will simplify the problem. If we look at our extensions.conf we will note that we are creating these extensions for every user:
	exten => 0***,1,Answer()
	exten => 0***,2,VoiceMailMain(****@*******)
	exten => 0***,3,HangUp()

	exten => ***,1,Dial(****/*****)
	exten => ***,2,VoiceMail(****@*******)
	exten => ***,3,HangUp()
How about writing one line for each account? We will use two macros in order to achieve a shorter and easier way of adding new accounts. One of the macros will handle the internal communication between the accounts, the other one will handle the voicemail applications (VoiceMailMain() extension). Since our accounts' names are not numbers and have nothing in common between the accounts' usernames, their mailbox number and their extension we will use variables defined in the [global] section of extensions.conf in order to specify the relation between the mailbox account, the extension number and the SIP or IAX2 account. Here are the macros:
macros.gif

And here are the variable declarations:
adding_vars.gif

Note that we have removed/commented the whole [voicemail] the whole [internal] context and we have added these two extensions, which matches per extension and starts the macros:
using_macros.gif

With this final step we have finished this example. Here are the files after the final editions:
- iax.conf
- sip.conf
- extensions.conf
- voicemail.conf

We will use this example as start point for our next example (in progress) example.

 
User Comments
Anonymous (dirking1 at gmail dot com)
07 February 2009 20:14:34
<p><u><b><font size="1"><a rel="href=&quot;http://www.dirking.net/&quot;" href="http://www.dirking.net/cat-19.html"><font color="#0000FF">Real estate-</font></a>
<font color="#0000FF">
<a rel="href=&quot;http://www.dirking.net/cat21s3.html&quot;" target="Lawyer - attorney" href="http://www.dirking.net/cat-21.html">
&nbsp;<font style="font-family: Tahoma; font-size: 9pt;">Lawyer , attorney</font></a><font style="font-family: Tahoma; font-size: 9pt;">-
<a rel="href=&quot;http://dirking.net/vb/f16.html&quot;" href="http://www.dirking.net/vb/f19.html">Ask a
Lawyer Online Now Free lawyer</a> -<a rel="href=&quot;http://www.dirking.net/cat11s3.html&quot;" target="umbrella company incorporating formations formation offshore formation incorporate enterprise car insurance company Insurance car insurance online car insurance limited liability" href="http://www.dirking.net/cat-11.html">umbrella
company incorporating&nbsp;</a>&nbsp;&nbsp;</font>- <a rel="href=&quot;http://www.dirking.net/cat10s3.html&quot;" target="engineer" href="http://www.dirking.net/cat-10.html">engineer&nbsp;</a><a rel="href=&quot;http://www.dirking.net/cat15s3.html&quot;" target="Jobs" href="http://www.dirking.net/cat-15.html">-&nbsp;&nbsp;
Jobs</a>&nbsp; -<a rel href="http://www.dirking.net/cat-20.html">&nbsp;<font style="font-family: Tahoma; font-size: 9pt;">Building
materials company</font></a> - <font style="font-family: Tahoma; font-size: 9pt;"><a rel="href=&quot;http://www.dirking.net/cat17s3.html&quot;" href="http://www.dirking.net/cat-17.html">&nbsp;
Petroleum Company</a>&nbsp;</font>
- <a rel="href=&quot;http://http://www.dirking.net/word/&quot;" href="http://www.dirking.net/cat-19.html">Real
estate&nbsp;</a>&nbsp;-<a rel="href=&quot;http://www.dirking.net/vb/&quot;" target="Lawyer - attorney" href="http://www.dirking.net/vb/sitemap/">&nbsp;<font style="font-family: Tahoma; font-size: 9pt;" color="#0000ff">Lawyer
- attorney</font></a> &nbsp;<a href="http://www.dirking.net/cat-22.html"><font style="font-family: Tahoma; font-size: 9pt" color="#0000FF">
- car
hire</font></a><font style="font-family: Tahoma; font-size: 9pt" color="#0000FF">&nbsp;&nbsp;</font>-
<a class="olink" href="http://www.dirnew.net">Rental cars</a>-<a href="http://a3j.com/fgames">&#1575;&#1604;&#1593;&#1575;&#1576;
&#1575;&#1603;&#1588;&#1606;</a>-<span lang="ar-sa"><a href="http://www.a3j.com/story.html"><span style="text-decoration: none;"><font style="font-size: 8pt; font-family: Tahoma" face="Tahoma" size="-1">&#1602;&#1589;&#1589;
&#1608; &#1585;&#1608;&#1575;&#1610;&#1575;&#1578;</font></span></a></span><font style="font-family: Tahoma; font-size: 9pt">-<a href="http://a3j.com/cook.html">&#1591;&#1576;&#1582;&#1575;&#1578;</a>
-</font><a href="http://forum.a3j.com/">proxy</a>- <a href="http://forum.a3j.com/">&#1576;&#1585;&#1608;&#1603;&#1587;&#1610;</a>
- <a href="http://www.dirnew.net">Rent a Car</a> - <a href="http://www.dirnew.net">Rent
a Car</a> -<a href="http://www.dirnew.net">Rent a Car</a> -<a href="http://www.dirnew.net">Rent
a Car</a> -<a href="http://www.dirnew.net">Rent a Car</a> -<a href="http://www.dirnew.net">Rent
a</a>&nbsp; -<a href="http://www.dirnew.net">Rent a</a>&nbsp; -<a href="http://www.dirnew.net">Rent
a</a> -<font style="font-family: Tahoma; font-size: 9pt" color="#0000FF"><a href="http://www.dirking.net/vb/f13.html">Real
Estate</a> -<a href="http://www.dirking.net/vb/f19.html">Question
And Answer in Law</a> </font></font><font style="font-family: Tahoma" color="#0000FF"> - <a class="olink" href="http://www.dirking.net/cat-23.html">Lawyer
and Attorney in us</a><font color="#0000FF"><a class="olink" href="http://www.dirking.net/cat-23.html">a</a> - <a class="olink" href="http://www.dirking.net/cat-30.html">Rent
a car around the world</a>-<a class="olink" href="http://www.dirking.net/cat-22.html">car
hire ,, Rent a Car</a>-<a class="olink" href="http://www.dirnew.net/cat-45.html">Rent
a different things in USA</a> - <a class="olink" href="http://www.dirnew.net/cat-34.html">Rent
a boat, motocycle , air craft and bike in USA</a>-<a class="olink" href="http://www.dirnew.net/cat-28.html">Rent
a properties in USA</a> </font></font></font><font color="#0000FF"><font size="2"><font style="font-family: Tahoma" color="#0000FF"> -</font><font style="font-family: Tahoma; font-size: 9pt">
</font><a class="olink" href="http://www.dirnew.net/cat-138.html">Rent
an Electronic, Electrical &amp; Telecommunication in USA</a> -<a class="olink" href="http://www.dirnew.net/cat-24.html">Rent
a car in USA</a>- <a class="olink" href="http://www.dirnew.net/cat-138.html">Rent
an Electronic, Electrical &amp; Telecommunication </a> </font></font> <a class="olink" href="http://www.dirnew.net/cat-138.html"><font size="1"><font color="#0000FF"> in USA</font></font></a> <font size="1"><font color="#0000FF"> - <a class="olink" href="http://www.dirking.net/cat-23.html">Lawyer
and Attorney in usa</a> - <a class="olink" href="http://www.dirking.net/cat-30.html">Rent
a car around the world</a> - <a class="olink" href="http://www.dirking.net/cat-22.html">car
hire ,, Rent a Car</a> - <a class="olink" href="http://www.dirking.net/cat-11.html">company</a>
- <a href="http://forum.a3j.com/forumdisplay.php?f=112">&#1575;&#1604;&#1578;&#1605;&#1610;&#1586;
&#1604;&#1604;&#1576;&#1585;&#1575;&#1605;&#1580;</a>-<a href="http://forum.a3j.com/forumdisplay.php?f=113">&#1575;&#1604;&#1578;&#1605;&#1610;&#1586;
&#1575;&#1604;&#1575;&#1604;&#1593;&#1575;&#1576;</a>-<a href="http://forum.a3j.com/forumdisplay.php?f=116">sof
, Programmes , programs , 2008 , 2009</a>- <a href="http://forum.a3j.com/forumdisplay.php?f=117">mix
x mix</a> -<font style="font-size: 8pt;" face="Tahoma"><span lang="ar-sa"><a href="http://forum.a3j.com/"><span style="text-decoration: none;">&#1575;&#1604;&#1605;&#1606;&#1578;&#1583;&#1610;&#1575;&#1578;</span></a>
</span>| <span lang="ar-sa"><span style="text-decoration: none;"><a href="http://www.a3j.com/fgames/">&#1575;&#1604;&#1593;&#1575;&#1576;</a></span>
| <span style="text-decoration: none;"><a href="http://www.a3j.com/gallery/">&#1575;&#1604;&#1576;&#1608;&#1605;
&#1575;&#1604;&#1589;&#1608;&#1585;</a></span> | <span style="text-decoration: none;"><a href="http://www.a3j.com/droos.html">&#1605;&#1603;&#1578;&#1576;&#1577;
&#1575;&#1604;&#1583;&#1585;&#1608;&#1587;</a></span> | <span style="text-decoration: none;"><a href="http://www.a3j.com/adwat.html">&#1581;&#1602;&#1610;&#1576;&#1577;
&#1575;&#1604;&#1605;&#1589;&#1605;&#1605;</a></span> | <a href="http://www.a3j.com/cook.html"><span style="text-decoration: none;">&#1575;&#1604;&#1591;&#1576;&#1582;</span></a>&nbsp;
<a href="http://www.a3j.com/story.html"><span style="text-decoration: none;">&#1602;&#1589;&#1589;
&#1608; &#1585;&#1608;&#1575;&#1610;&#1575;&#1578;</span></a></span></font></font>-- <a href="http://www.a3j.com/index.php?action=altb">&#1575;&#1593;&#1588;&#1575;&#1576;
&#1591;&#1576; &#1576;&#1583;&#1610;&#1604;</a>- <a href="http://www.a3j.com/islamecsub-14.html">&#1604;&#1604;&#1605;&#1578;&#1586;&#1608;&#1580;&#1610;&#1606;</a>--<a href="http://www.a3j.com/storycat8.html">&#1602;&#1589;&#1589;
&#1575;&#1604;&#1578;&#1608;&#1576;&#1577;</a>-<a href="http://www.a3j.com/storycat1.html">&#1602;&#1589;&#1589; &#1605;&#1578;&#1606;&#1608;&#1593;&#1577;</a>-<a href="http://www.a3j.com/storycat2.html">&#1602;&#1589;&#1589;
&#1583;&#1610;&#1606;&#1610;&#1577;</a>-<a href="http://www.a3j.com/storycat3.html">&#1602;&#1589;&#1589;</a>
<a href="http://www.a3j.com/cook-cat-10.html">&#1608;&#1580;&#1576;&#1575;&#1578; &#1604;&#1604;&#1575;&#1601;&#1591;&#1575;&#1585;-</a>-
<a href="http://www.a3j.com/cook-cat-4.html">&#1582;&#1576;&#1586; &#1608;&#1605;&#1593;&#1580;&#1606;&#1575;&#1578;-</a>
<a href="http://www.a3j.com/cook-cat-5.html">&#1575;&#1604;&#1581;&#1604;&#1608;&#1610;&#1575;&#1578;-</a>
<a href="http://www.a3j.com/cook-cat-6.html">&#1575;&#1604;&#1587;&#1604;&#1591;&#1575;&#1578;</a> -
<a href="http://www.a3j.com/cook-cat-1.html">&#1591;&#1576;&#1582;&#1575;&#1578; &#1593;&#1585;&#1576;&#1610;&#1577;</a>-<a href="http://www.dirnew.net/cat-53.html" class="sitelink">Alabama</a>
-<a href="http://www.dirnew.net/cat-35.html" class="sitelink">Alaska</a>- <a href="http://www.dirnew.net/cat-36.html" class="sitelink">Hawaii</a>-<a href="http://www.dirnew.net/cat-136.html" class="sitelink">New
york</a>-<a href="http://www.dirnew.net/cat-137.html" class="sitelink">Arizona</a>-<a class="olink" href="http://www.dirking.net/cat-30.html">Rent
a car around the world</a> <span class="linkcount">-</span>-<a class="sitelink" href="http://www.dirking.net/cat-31.html" title="Sites count 0">USA</a><span class="text1">,
</span><a class="sitelink" href="http://www.dirking.net/cat-32.html" title="Sites count 39">Canada</a><span class="text1">,
</span></font><font size="2"><a class="sitelink" href="http://www.dirking.net/cat-33.html" title="Sites count 41">France</a><span class="text1">-<a class="olink" href="http://www.dirking.net/cat-23.html">Lawyer
and Attorney in usa</a> </span><span class="linkcount">-</span><span class="text1"><a class="sitelink" href="http://www.dirking.net/cat-24.html" title="Sites count 158">Alabama</a>,
<a class="sitelink" href="http://www.dirking.net/cat-25.html" title="Sites count 107">Alaska</a>,
<a class="sitelink" href="http://www.dirking.net/cat-26.html" title="Sites count 79">Arizona</a>,
<a class="sitelink" href="http://www.dirking.net/cat-27.html" title="Sites count 104">Arkansas</a>,
<a class="sitelink" href="http://www.dirking.net/cat-28.html" title="Sites count 394">California</a>,
<a class="sitelink" href="http://www.dirking.net/cat-29.html" title="Sites count 62">Colorado</a>-<a class="olink" href="http://www.dirking.net/cat-30.html">Rent
a car around the world</a> </span><span class="linkcount">-</span><span class="text1"><a class="sitelink" href="http://www.dirking.net/cat-31.html" title="Sites count 0">USA</a>,
<a class="sitelink" href="http://www.dirking.net/cat-32.html" title="Sites count 39">Canada</a>,
<a class="sitelink" href="http://www.dirking.net/cat-33.html" title="Sites count 41">France</a>,
<a class="sitelink" href="http://www.dirking.net/cat-34.html" title="Sites count 43">Spain</a>,
<a class="sitelink" href="http://www.dirking.net/cat-35.html" title="Sites count 39">Italy</a>,
<a class="sitelink" href="http://www.dirking.net/cat-36.html" title="Sites count 27">United
Kingdom</a>, <a class="sitelink" href="http://www.dirking.net/cat-37.html" title="Sites count 10">Germany</a>,
<a class="sitelink" href="http://www.dirking.net/cat-38.html" title="Sites count 0">Austria</a>,
<a class="sitelink" href="http://www.dirking.net/cat-39.html" title="Sites count 0">Switzerland</a>,
<a class="sitelink" href="http://www.dirking.net/cat-40.html" title="Sites count 0">China</a>,
<a class="sitelink" href="http://www.dirking.net/cat-41.html" title="Sites count 0">Hong
Kong</a>, <a class="sitelink" href="http://www.dirking.net/cat-42.html" title="Sites count 0">Japan</a>,
<a class="sitelink" href="http://www.dirking.net/cat-43.html" title="Sites count 10">Malaysia</a>,
<a class="sitelink" href="http://www.dirking.net/cat-44.html" title="Sites count 11">Thailand</a>,
<a class="sitelink" href="http://www.dirking.net/cat-45.html" title="Sites count 10">Indonesia</a>,
<a class="sitelink" href="http://www.dirking.net/cat-46.html" title="Sites count 0">Australia</a>,
<a class="sitelink" href="http://www.dirking.net/cat-47.html" title="Sites count 11">Sweden</a>,
<a class="sitelink" href="http://www.dirking.net/cat-48.html" title="Sites count 0">Norway</a>,
<a class="sitelink" href="http://www.dirking.net/cat-49.html" title="Sites count 10">South
Africa</a>, <a class="sitelink" href="http://www.dirking.net/cat-50.html" title="Sites count 5">Ukraine</a>,-<a class="olink" href="http://www.dirking.net/cat-11.html">company</a>
</span><span class="linkcount">-</span><span class="text1"><a class="sitelink" href="http://www.dirking.net/cat-20.html" title="Sites count 93">Building
materials company</a>-<a class="olink" href="http://www.dirnew.net/cat-45.html">Rent
a different things in USA</a> </span><span class="linkcount">-</span><span class="text1"><a class="sitelink" href="http://www.dirnew.net/cat-55.html" title="Sites count 114">New
york</a>, <a class="sitelink" href="http://www.dirnew.net/cat-50.html" title="Sites count 347">Alaska</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-49.html" title="Sites count 232">Hawii</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-52.html" title="Sites count 27">Alabama</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-98.html" title="Sites count 9">Arizona</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-99.html" title="Sites count 4">Arkansas</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-100.html" title="Sites count 91">California</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-101.html" title="Sites count 0">Colorado</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-102.html" title="Sites count 25">Georgia</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-103.html" title="Sites count 43">Florida</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-104.html" title="Sites count 65">New
Jersey</a>, <a class="sitelink" href="http://www.dirnew.net/cat-105.html" title="Sites count 90">Illinois</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-106.html" title="Sites count 54">Texas</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-107.html" title="Sites count 25">Connecticut</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-108.html" title="Sites count 3">Indiana</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-109.html" title="Sites count 36">Maryland</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-110.html" title="Sites count 65">Massachusetts</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-111.html" title="Sites count 41">Michigan</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-112.html" title="Sites count 27">Minnesota</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-113.html" title="Sites count 13">Missouri</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-114.html" title="Sites count 4">Montana</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-115.html" title="Sites count 5">Nebraska</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-116.html" title="Sites count 2">Nevada</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-117.html" title="Sites count 17">New
Hampshire</a>, <a class="sitelink" href="http://www.dirnew.net/cat-118.html" title="Sites count 4">New
Mexico</a>, <a class="sitelink" href="http://www.dirnew.net/cat-119.html" title="Sites count 13">North
Carolina</a>, <a class="sitelink" href="http://www.dirnew.net/cat-120.html" title="Sites count 3">North
Dakota</a>, <a class="sitelink" href="http://www.dirnew.net/cat-121.html" title="Sites count 37">Ohio</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-122.html" title="Sites count 10">Oklahoma</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-123.html" title="Sites count 2">Oregon</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-124.html" title="Sites count 92">Pennsylvania</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-125.html" title="Sites count 9">Rhode
Island</a>, <a class="sitelink" href="http://www.dirnew.net/cat-126.html" title="Sites count 6">South
Carolina</a>, <a class="sitelink" href="http://www.dirnew.net/cat-127.html" title="Sites count 0">South
Dakota</a>, <a class="sitelink" href="http://www.dirnew.net/cat-128.html" title="Sites count 9">Tennessee</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-129.html" title="Sites count 5">Utah</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-130.html" title="Sites count 2">Vermont</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-131.html" title="Sites count 41">Virginia</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-132.html" title="Sites count 28">Washington</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-133.html" title="Sites count 2">West
Virginia</a>, <a class="sitelink" href="http://www.dirnew.net/cat-134.html" title="Sites count 15">Wisconsin</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-135.html" title="Sites count 0">Wyoming</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-159.html" title="Sites count 0">American
Samoa</a>, <a class="sitelink" href="http://www.dirnew.net/cat-160.html" title="Sites count 0">Delaware</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-161.html" title="Sites count 0">District
of Columbia</a>, <a class="sitelink" href="http://www.dirnew.net/cat-162.html" title="Sites count 0">Federated
States of Micronesia</a>, <a class="sitelink" href="http://www.dirnew.net/cat-163.html" title="Sites count 0">Guam</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-164.html" title="Sites count 0">Idaho</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-165.html" title="Sites count 0">Iowa</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-166.html" title="Sites count 0">Kansas</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-167.html" title="Sites count 0">Kentucky</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-169.html" title="Sites count 0">Louisiana</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-170.html" title="Sites count 0">Maine</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-171.html" title="Sites count 0">Marshall
Islands</a>, <a class="sitelink" href="http://www.dirnew.net/cat-172.html" title="Sites count 0">Mississippi</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-173.html" title="Sites count 0">Northern
Mariana Islands</a>, <a class="sitelink" href="http://www.dirnew.net/cat-174.html" title="Sites count 0">Palau</a>,
<a class="sitelink" href="http://www.dirnew.net/cat-175.html" title="Sites count 0">Puerto
Rico</a>, <a class="sitelink" href="http://www.dirnew.net/cat-176.html" title="Sites count 0">Virgin
Islands</a>,</span></font></b></u></p>
robert duffer (rest at jerryh dot us)
21 January 2008 18:41:56
I uderstand the tutorial so far, but where do I indicate my SMTP server address for Asterisk? I am new at Asterisk (and Linux), so maybe my question as an obvious answer if I were more familiar with Linux-Asterisk.
Thanks
Sergio (lapostadisergio at gmail dot com)
21 September 2007 12:14:57
WHERE ARE THAT FILES?
Could you say me how I have to write to modify the body of the email? Have I to write in the voicemail.conf file and in particular into the context of the definitions of the mailbox?
THANK YOU VERY MUCH.

I'd like to know where do you learn asterisk because I have try to learn it for my studies.
Perry mensah (pamomens at gmail dot com)
11 May 2007 18:50:18
Good tutorials, unfortunately the final files as you are presenting are not there.

Aslo you dont specify the file you are working on, it will really help if you specify them.

Can you also consider using a third party mail server which is running on a saperate server.

Thanks for the great tutorials
John Gardner (JOHN dot GARDNER at TAGISH dot CO dot UK)
10 May 2007 15:58:44
It started off so well, but then you started editing files and not specifiying what files they were from.
artef (andofetra at gmail dot conf)
25 March 2007 09:29:11
Where are the files you\'ve just said in \"Here are the files after the final editions\"?
 
Add Comment
Name:
Email:
Comment:
In order to prevent automatic posting on our website, we kindly request you to type in the number you see in the picture below.
Image Verification:
 

Latest Headlines:

  • T.38 faxing with Zoiper 2.15 is now easier than ever
    section: voip software
  • Asterisk 1.4.21 Released
    section: Asterisk
  • Asterisk 1.4.20 Released
    section: Asterisk
  • Asterisk 1.4.20-rc2 Released
    section: Asterisk
  • Asterisk 1.4.20-rc1 Now Available
    section: Asterisk
  • News Archives (older news)

Latest Tutorials:

  • Sending Fax from Zoiper to Zoiper using T.38
    added 08/Dec/2008 18:16
  • VMAuthenticate (dialplan application)
    added 01/Mar/2008 15:57
  • Siptronic ST-530
    added 06/Nov/2007 17:57
  • Siemens C455 IP hardphone
    added 05/Nov/2007 10:24
  • Zoiper
    added 22/Oct/2007 17:53

Latest Comments:

  • nice...
    tutorial: X-Lite - SIP softphone
  • Badly need your help. Things are only im...
    tutorial: Grandstream HandyTone-486 - SIP Analog Telephone Adapter (ATA)
  • how do i rectify this problem? all incom...
    tutorial: Troubleshooting
  • How are you. Summer afternoon - Summer a...
    tutorial: Cisco 7960 IP Phone - SIP firmware version
  • where is the tar file you mention above ...
    tutorial: Cisco 7960 IP Phone - SIP firmware version
 
contact us at: support@asteriskguru.com - asterisKGuru.com © all rights reserved   |   *asterisk is registered trademark of © Digium™