<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for Matt Schmandt</title>
	
	<link>http://www.theschmandts.org/blog</link>
	<description>Gentoo Linux - Asterisk</description>
	<pubDate>Tue, 07 Jul 2009 18:07:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/CommentsForMattSchmandt" type="application/rss+xml" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Comment on Email notifications for missed calls in Asterisk by Tenner</title>
		<link>http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/comment-page-1/#comment-280</link>
		<dc:creator>Tenner</dc:creator>
		<pubDate>Thu, 02 Jul 2009 01:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/#comment-280</guid>
		<description>Thanks for your help, sorry for not responding sooner. I'm still new to asterisk and Linux and currently using FreePBX which doesn't seem to like ti when you edit too many files. :-) But thank-you for your prompt reply !!</description>
		<content:encoded><![CDATA[<p>Thanks for your help, sorry for not responding sooner. I&#8217;m still new to asterisk and Linux and currently using FreePBX which doesn&#8217;t seem to like ti when you edit too many files. <img src='http://www.theschmandts.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> But thank-you for your prompt reply !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recover documents from a corrupt Lotus Notes database by Matt Schmandt Blog Archive Recover documents from a corrupt | fix my credit</title>
		<link>http://www.theschmandts.org/blog/2007/04/12/recover-documents-from-a-corrupt-lotus-notes-database/comment-page-1/#comment-269</link>
		<dc:creator>Matt Schmandt Blog Archive Recover documents from a corrupt | fix my credit</dc:creator>
		<pubDate>Tue, 23 Jun 2009 01:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/2007/04/12/recover-documents-from-a-corrupt-lotus-notes-database/#comment-269</guid>
		<description>[...] Matt Schmandt Blog Archive Recover documents from a corrupt   Posted by root 6 days ago (http://www.theschmandts.org)        After none of simple remedies worked i tried the database copy utility offered by my notes 7 client leaving this comment might be useful for other folks looking for a resolution matt schmandt is proudly powered by wordpress        Discuss   |  Bury |     News | Matt Schmandt Blog Archive Recover documents from a corrupt [...]</description>
		<content:encoded><![CDATA[<p>[...] Matt Schmandt Blog Archive Recover documents from a corrupt   Posted by root 6 days ago (http://www.theschmandts.org)        After none of simple remedies worked i tried the database copy utility offered by my notes 7 client leaving this comment might be useful for other folks looking for a resolution matt schmandt is proudly powered by wordpress        Discuss&nbsp;  |&nbsp; Bury |&nbsp;    News | Matt Schmandt Blog Archive Recover documents from a corrupt [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Email notifications for missed calls in Asterisk by Matt Schmandt</title>
		<link>http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/comment-page-1/#comment-259</link>
		<dc:creator>Matt Schmandt</dc:creator>
		<pubDate>Sun, 21 Jun 2009 03:35:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/#comment-259</guid>
		<description>It is included in the source of Asterisk as a sample.  It can be found in the asterisk source code directory under configs/extensions.conf.sample.

Here is the code copied from from Asterisk 1.4.25.1

[macro-stdexten];
;
; Standard extension macro:
;   ${ARG1} - Extension  (we could have used ${MACRO_EXTEN} here as well
;   ${ARG2} - Device(s) to ring
;
exten =&gt; s,1,Dial(${ARG2},20)			; Ring the interface, 20 seconds maximum
exten =&gt; s,2,Goto(s-${DIALSTATUS},1)		; Jump based on status (NOANSWER,BUSY,CHANUNAVAIL,CONGESTION,ANSWER)

exten =&gt; s-NOANSWER,1,Voicemail(${ARG1},u)	; If unavailable, send to voicemail w/ unavail announce
exten =&gt; s-NOANSWER,2,Goto(default,s,1)		; If they press #, return to start

exten =&gt; s-BUSY,1,Voicemail(${ARG1},b)		; If busy, send to voicemail w/ busy announce
exten =&gt; s-BUSY,2,Goto(default,s,1)		; If they press #, return to start

exten =&gt; _s-.,1,Goto(s-NOANSWER,1)		; Treat anything else as no answer

exten =&gt; a,1,VoicemailMain(${ARG1})		; If they press *, send the user into VoicemailMain</description>
		<content:encoded><![CDATA[<p>It is included in the source of Asterisk as a sample.  It can be found in the asterisk source code directory under configs/extensions.conf.sample.</p>
<p>Here is the code copied from from Asterisk 1.4.25.1</p>
<p>[macro-stdexten];<br />
;<br />
; Standard extension macro:<br />
;   ${ARG1} - Extension  (we could have used ${MACRO_EXTEN} here as well<br />
;   ${ARG2} - Device(s) to ring<br />
;<br />
exten => s,1,Dial(${ARG2},20)			; Ring the interface, 20 seconds maximum<br />
exten => s,2,Goto(s-${DIALSTATUS},1)		; Jump based on status (NOANSWER,BUSY,CHANUNAVAIL,CONGESTION,ANSWER)</p>
<p>exten => s-NOANSWER,1,Voicemail(${ARG1},u)	; If unavailable, send to voicemail w/ unavail announce<br />
exten => s-NOANSWER,2,Goto(default,s,1)		; If they press #, return to start</p>
<p>exten => s-BUSY,1,Voicemail(${ARG1},b)		; If busy, send to voicemail w/ busy announce<br />
exten => s-BUSY,2,Goto(default,s,1)		; If they press #, return to start</p>
<p>exten => _s-.,1,Goto(s-NOANSWER,1)		; Treat anything else as no answer</p>
<p>exten => a,1,VoicemailMain(${ARG1})		; If they press *, send the user into VoicemailMain</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Email notifications for missed calls in Asterisk by Tenner</title>
		<link>http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/comment-page-1/#comment-258</link>
		<dc:creator>Tenner</dc:creator>
		<pubDate>Sun, 21 Jun 2009 03:08:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/#comment-258</guid>
		<description>I cannot find the stdexten macro, would someone be kind enough to point me in the direction of its location ?</description>
		<content:encoded><![CDATA[<p>I cannot find the stdexten macro, would someone be kind enough to point me in the direction of its location ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Email notifications for missed calls in Asterisk by sergiopichardo</title>
		<link>http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/comment-page-1/#comment-220</link>
		<dc:creator>sergiopichardo</dc:creator>
		<pubDate>Wed, 11 Feb 2009 22:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/#comment-220</guid>
		<description>i have same problem... can you tell us what command you use to convert the file.... regards, 

SP</description>
		<content:encoded><![CDATA[<p>i have same problem&#8230; can you tell us what command you use to convert the file&#8230;. regards, </p>
<p>SP</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Email notifications for missed calls in Asterisk by doughoman</title>
		<link>http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/comment-page-1/#comment-202</link>
		<dc:creator>doughoman</dc:creator>
		<pubDate>Wed, 31 Dec 2008 08:48:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/#comment-202</guid>
		<description>jernej -
I had same problem and traced it to my ending line characters being CRLF from pasting the shell script into Notepad.  Just had to convert to UNIX LF only and it worked.</description>
		<content:encoded><![CDATA[<p>jernej -<br />
I had same problem and traced it to my ending line characters being CRLF from pasting the shell script into Notepad.  Just had to convert to UNIX LF only and it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Email notifications for missed calls in Asterisk by jernej</title>
		<link>http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/comment-page-1/#comment-190</link>
		<dc:creator>jernej</dc:creator>
		<pubDate>Mon, 01 Dec 2008 13:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/2007/05/05/email-notifications-for-missed-calls-in-asterisk/#comment-190</guid>
		<description>Hi Matt!
Your script looks promising, exactly what I need, but I can't get it to work :(. I tried even giving the 777 permission on the file processCallEmail.sh, but I always get an error. Any clues?
Thank you!

Jernej

-- Executing [h@macro-stdexten:1] System("SIP/100-08f5e6d8", "processCallEmail.sh "mymail@mydomain.com" "100" "Jernej P" "NOANSWER" "FAILED"") in new stack
[Dec  1 14:29:19] WARNING[8162]: app_system.c:107 system_exec_helper: Unable to execute 'processCallEmail.sh "mymail@mydomain.com" "100" "Jernej P" "NOANSWER" "FAILED"'
  == Spawn extension (macro-stdexten, h, 1) exited non-zero on 'SIP/100-08f5e6d8'</description>
		<content:encoded><![CDATA[<p>Hi Matt!<br />
Your script looks promising, exactly what I need, but I can&#8217;t get it to work :(. I tried even giving the 777 permission on the file processCallEmail.sh, but I always get an error. Any clues?<br />
Thank you!</p>
<p>Jernej</p>
<p>&#8211; Executing [h@macro-stdexten:1] System(&#8221;SIP/100-08f5e6d8&#8243;, &#8220;processCallEmail.sh &#8220;mymail@mydomain.com&#8221; &#8220;100&#8243; &#8220;Jernej P&#8221; &#8220;NOANSWER&#8221; &#8220;FAILED&#8221;") in new stack<br />
[Dec  1 14:29:19] WARNING[8162]: app_system.c:107 system_exec_helper: Unable to execute &#8216;processCallEmail.sh &#8220;mymail@mydomain.com&#8221; &#8220;100&#8243; &#8220;Jernej P&#8221; &#8220;NOANSWER&#8221; &#8220;FAILED&#8221;&#8216;<br />
  == Spawn extension (macro-stdexten, h, 1) exited non-zero on &#8216;SIP/100-08f5e6d8&#8242;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recover documents from a corrupt Lotus Notes database by radanhotmail</title>
		<link>http://www.theschmandts.org/blog/2007/04/12/recover-documents-from-a-corrupt-lotus-notes-database/comment-page-1/#comment-186</link>
		<dc:creator>radanhotmail</dc:creator>
		<pubDate>Mon, 08 Sep 2008 04:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/2007/04/12/recover-documents-from-a-corrupt-lotus-notes-database/#comment-186</guid>
		<description>my lotus notes archive file (this is one with all my old emails) is corrupt. everytime i try and open it i get the message "Database  is corrupt -- cannot allocate space".
any ideas on what i can do? have been trying get my IT guys to fix this but they have not managed to do it for the last 3 months. Please could you help! Many thanks</description>
		<content:encoded><![CDATA[<p>my lotus notes archive file (this is one with all my old emails) is corrupt. everytime i try and open it i get the message &#8220;Database  is corrupt &#8212; cannot allocate space&#8221;.<br />
any ideas on what i can do? have been trying get my IT guys to fix this but they have not managed to do it for the last 3 months. Please could you help! Many thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Chrome by Rich Waters</title>
		<link>http://www.theschmandts.org/blog/2008/09/02/google-chrome/comment-page-1/#comment-185</link>
		<dc:creator>Rich Waters</dc:creator>
		<pubDate>Wed, 03 Sep 2008 14:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/?p=45#comment-185</guid>
		<description>I haven't had a chance to really check it out much yet, but I've also heard some good things about it and the Javascript VM (V8) stuff looks really interesting.  I'm extremely glad that they did not create their own rendering engine and decided to use WebKit.  I'm all for browser competition as long as no one makes any new rendering engines :P</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t had a chance to really check it out much yet, but I&#8217;ve also heard some good things about it and the Javascript VM (V8) stuff looks really interesting.  I&#8217;m extremely glad that they did not create their own rendering engine and decided to use WebKit.  I&#8217;m all for browser competition as long as no one makes any new rendering engines <img src='http://www.theschmandts.org/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Podcamp Ohio by angelo</title>
		<link>http://www.theschmandts.org/blog/2008/06/29/podcamp-ohio/comment-page-1/#comment-176</link>
		<dc:creator>angelo</dc:creator>
		<pubDate>Thu, 03 Jul 2008 13:04:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/?p=42#comment-176</guid>
		<description>I'm glad you had a great time and I wanted to thank you for helping out too!

The last number I have is 166 registered guests, plus there are about 10+ missing name tags that we presume people took but did not sign them selves in. I would guess we nearly hit 180 throughout the day. What was amazing is how many folks were their the entire day. Could not have asked for better retention.</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad you had a great time and I wanted to thank you for helping out too!</p>
<p>The last number I have is 166 registered guests, plus there are about 10+ missing name tags that we presume people took but did not sign them selves in. I would guess we nearly hit 180 throughout the day. What was amazing is how many folks were their the entire day. Could not have asked for better retention.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Podcamp Ohio by » PodCampOhio As Blogged in the Blogosphere - Marketing Conversation - New Marketing and Social Media by Abraham Harrison LLC Marketing Conversation - New Marketing and Social Media by Abraham Harrison LLC</title>
		<link>http://www.theschmandts.org/blog/2008/06/29/podcamp-ohio/comment-page-1/#comment-175</link>
		<dc:creator>» PodCampOhio As Blogged in the Blogosphere - Marketing Conversation - New Marketing and Social Media by Abraham Harrison LLC Marketing Conversation - New Marketing and Social Media by Abraham Harrison LLC</dc:creator>
		<pubDate>Mon, 30 Jun 2008 04:15:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/?p=42#comment-175</guid>
		<description>[...] Podcamp Ohio [...]</description>
		<content:encoded><![CDATA[<p>[...] Podcamp Ohio [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Podcamp Ohio by PodCampOhio As Blogged in the Blogosphere &lt; Chris Abraham</title>
		<link>http://www.theschmandts.org/blog/2008/06/29/podcamp-ohio/comment-page-1/#comment-174</link>
		<dc:creator>PodCampOhio As Blogged in the Blogosphere &lt; Chris Abraham</dc:creator>
		<pubDate>Sun, 29 Jun 2008 22:15:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.theschmandts.org/blog/?p=42#comment-174</guid>
		<description>[...] Podcamp Ohio [...]</description>
		<content:encoded><![CDATA[<p>[...] Podcamp Ohio [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
