<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jeff&#039;s Meanderings</title>
	<atom:link href="http://jeffeske.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeffeske.wordpress.com</link>
	<description>»Various stuff that I’ll forget if I don’t document it someplace… USE IT AT YOUR OWN RISK</description>
	<lastBuildDate>Wed, 08 Feb 2012 14:51:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jeffeske.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/c1c1e8d28c0660dd32a15a394000e8ca?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Jeff&#039;s Meanderings</title>
		<link>http://jeffeske.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jeffeske.wordpress.com/osd.xml" title="Jeff&#039;s Meanderings" />
	<atom:link rel='hub' href='http://jeffeske.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Adding Templates to OTRS</title>
		<link>http://jeffeske.wordpress.com/2012/02/06/adding-templates-to-otrs/</link>
		<comments>http://jeffeske.wordpress.com/2012/02/06/adding-templates-to-otrs/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 20:51:22 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/?p=86</guid>
		<description><![CDATA[We&#8217;re currently investigating using OTRS, with the ITSM modules, as a possible ticketing system.  In version 3.0, they&#8217;ve got the ability to add ticket templates.  Templates are nice in that they allow you to create semi-complete tickets just by choosing a template.  That is one of the features that FrontRange&#8217;s ITSM product have in Version [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=86&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re currently investigating using OTRS, with the ITSM modules, as a possible ticketing system.  In version 3.0, they&#8217;ve got the ability to add ticket templates.  Templates are nice in that they allow you to create semi-complete tickets just by choosing a template.  That is one of the features that FrontRange&#8217;s ITSM product have in Version 7 that we were really looking forward to having.  Currently, in FRS&#8217;s ITSM (version 6) we&#8217;re using QuickActions to do basically the same thing.</p>
<p>There is a great <a title="OTRS Telephone Ticket Templates" href="http://www.youtube.com/watch?v=1B8mZ9Ku_bA" target="_blank">Youtube video</a> that describes what to do to get templates working in the default form.   The problem is that the example template code that OTRS has in the AgentTicketPhone.dtl file discussed uses a button to choose the template text.  That&#8217;s all well and fine for some browsers, but doesn&#8217;t work in all of them, due to using the <span style="color:#000000;"><strong>onclick</strong></span> function.  Seems that Safari and some other browsers just ignore that. Plus, in my opinion, it would be pretty ugly, and reminiscent of a 1990&#8242;s webpage, to have a dozen different buttons to click on.  Maybe if they were each a different color and blinked&#8230;</p>
<p>Anyway, after some Trial and Error, I was able to get a cleaner method working &#8211; in IE, Firefox, Safari, and other browsers.  I replaced the button(s) with a dropdown menu.  This is simply a select tag, with an option representing each template form.  It then uses the <strong>onchange</strong> function, rather than the <strong>onclick</strong> function, fire off the appropriate form.  This means that all of the major browsers seem to be all right with it.  I tested it in IE, Firefox, Opera, Safari, and Chrome and they all worked as expected.</p>
<p>What I&#8217;ve done is create a custom theme, then copied and altered the <strong>AgentTicketPhone.dtl</strong> file to add my changes.  This means that during upgrades, my changes won&#8217;t be overwritten, since they&#8217;re not made in the default file.</p>
<p>Anyway, the way the example is written in the file is:</p>
<p><a href="http://jeffeske.files.wordpress.com/2012/02/otrsbutton.jpg"><img class="alignnone  wp-image-106" title="OTRSButton" src="http://jeffeske.files.wordpress.com/2012/02/otrsbutton.jpg?w=542&#038;h=16" alt="" width="542" height="16" /></a></p>
<p>As you can see, it uses the <strong>onclick</strong> function and each template would require its own button.</p>
<p>What I&#8217;ve done, is add a dropdown via the select tag and its options and used the <strong>onchange</strong> function:</p>
<p><a href="http://jeffeske.files.wordpress.com/2012/02/otrsselect.jpg"><img class="alignnone  wp-image-108" title="OTRSSelect" src="http://jeffeske.files.wordpress.com/2012/02/otrsselect.jpg?w=491&#038;h=81" alt="" width="491" height="81" /></a></p>
<p>Things to note are:</p>
<p>1&gt; Make sure to add the <strong>id=&#8221;some_name&#8221;</strong> to your select tag, or the GetElementByID() won&#8217;t work, since there won&#8217;t be an ID to get.</p>
<p>2&gt; The option values are actually the names of each form that I&#8217;ve added at the bottom of the page.  That means that there&#8217;s a form at the bottom with <em><strong>id=&#8221;PassReset&#8221;</strong></em> and one with <em><strong>id=&#8221;VirusMalware&#8221;</strong></em>.   These forms contain the fields and values that you want to use to automagically populate the ticket.  Changing the fields and values is covered in the video.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=86&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2012/02/06/adding-templates-to-otrs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>

		<media:content url="http://jeffeske.files.wordpress.com/2012/02/otrsbutton.jpg" medium="image">
			<media:title type="html">OTRSButton</media:title>
		</media:content>

		<media:content url="http://jeffeske.files.wordpress.com/2012/02/otrsselect.jpg" medium="image">
			<media:title type="html">OTRSSelect</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing/Configuring the OTRS Ticketing System</title>
		<link>http://jeffeske.wordpress.com/2012/01/24/installingconfiguring-the-otrs-ticketing-system/</link>
		<comments>http://jeffeske.wordpress.com/2012/01/24/installingconfiguring-the-otrs-ticketing-system/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 19:59:14 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/?p=82</guid>
		<description><![CDATA[I&#8217;ve been tasked with installing/configuring the open-source version of the OTRS ticketing system, with the ITSM modules, for evaluation here at work.  So far, I&#8217;m really happy with it.  I have the basics setup and ready to go and I must say that it seems easier to configure than FrontRange&#8217;s ITSM.  Another nice thing &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=82&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been tasked with installing/configuring the open-source version of the <a title="OTRS" href="http://www.otrs.com/en/open-source/">OTRS ticketing system</a>, with the ITSM modules, for evaluation here at work.  So far, I&#8217;m really happy with it.  I have the basics setup and ready to go and I must say that it seems easier to configure than FrontRange&#8217;s ITSM.  Another nice thing &#8211; IT&#8217;S FREE!  From my experimentation, it appears that since it&#8217;s completely web-based, it works on virtually any device with a browser and network access.  On top of that, there&#8217;s an iPhone app available too.  FRS&#8217;s ITSM product is .Net-based.   That means that it doesn&#8217;t really work with non-Windows devices.  ITSM Version 6 had a fairly robust web client available that could be used by the Mac people.  ITSM Version 7, on the other hand, drops that web client.  That means that Mac users are basically SOL, unless they use the free iPhone app.  &#8220;Ah&#8221;, you say,  &#8220;that&#8217;s simple enough.  Just download it and go!&#8221;.  Well, if only it was that easy.  To use the mobile client, you have to purchase the Mobile server module(s) &#8211; and the licenses to go with it.</p>
<p><strong>OTRS Pros so far:</strong><br />
IT&#8217;S FREE!<br />
Initial install was straightforward.<br />
A lot of configuration options.<br />
Very flexible, due to the above.<br />
Good support in the forums.<br />
Totally web-based, so it works with virtually any browser.<br />
Has an iPhone app available.</p>
<p><strong>OTRS Cons so far:</strong><br />
A lot of configuration options = A LOT of configuration options.<br />
Looks slightly &#8220;clunky&#8221; compared to FRS&#8217;s ITSM.  A certain amount of that can probably be corrected fairly easily &#8211; somewhere within the configuration options.<br />
No tech support number to call &#8211; without paying for support.<br />
No true Workflow engine to assist with ticket routing, etc.</p>
<p>We&#8217;ll see what else comes up as I move forward.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=82&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2012/01/24/installingconfiguring-the-otrs-ticketing-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing/Configuring Evision&#8217;s Argos Report Server</title>
		<link>http://jeffeske.wordpress.com/2012/01/24/instalingconfiguring-evisions-argos-report-server/</link>
		<comments>http://jeffeske.wordpress.com/2012/01/24/instalingconfiguring-evisions-argos-report-server/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 19:39:03 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/2012/01/24/instalingconfiguring-evisions-argos-report-server/</guid>
		<description><![CDATA[Installed Evision&#8217;s Argos Report Server.  It was a pretty easy, lightweight install.  I put it on a virtual server and encountered no problems with the install.  The initial setup went smoothly, outside of problems getting an Oracle connection successfully setup.  Most of that was probably due to my inexperience in dealing with Oracle products.  Once [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=81&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Installed <a title="Evisions" href="http://www.evisions.com/">Evision&#8217;s</a> <a title="Argos Report Server" href="http://www.evisions.com/Products/ArgosEnterpriseReporting/Overview.aspx">Argos Report Server</a>.  It was a pretty easy, lightweight install.  I put it on a virtual server and encountered no problems with the install.  The initial setup went smoothly, outside of problems getting an Oracle connection successfully setup.  Most of that was probably due to my inexperience in dealing with Oracle products.  Once I figured out how to get the ODBC driver successfully installed, along with a working tnsnames.ora file, it was pretty easy.</p>
<p>The person that is actually creating reports, etc. says that he&#8217;s really impressed with it so far.  Only time will tell how it works out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=81&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2012/01/24/instalingconfiguring-evisions-argos-report-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
		<item>
		<title>New Project &#8211; UPDATE</title>
		<link>http://jeffeske.wordpress.com/2012/01/24/new-project-update/</link>
		<comments>http://jeffeske.wordpress.com/2012/01/24/new-project-update/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 19:32:52 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/?p=60</guid>
		<description><![CDATA[MS System Center is dead.  The cost savings just didn&#8217;t warrant all of the work necessary to switch.  Basically, we wouldn&#8217;t save any real money, but would have to do a whole lot of work. On to the next project.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=60&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>MS System Center is dead.  The cost savings just didn&#8217;t warrant all of the work necessary to switch.  Basically, we wouldn&#8217;t save any real money, but would have to do a whole lot of work.</p>
<p>On to the next project.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=60&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2012/01/24/new-project-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
		<item>
		<title>New Project</title>
		<link>http://jeffeske.wordpress.com/2011/10/26/new-project/</link>
		<comments>http://jeffeske.wordpress.com/2011/10/26/new-project/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 20:57:51 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/?p=57</guid>
		<description><![CDATA[I&#8217;m on a team that&#8217;s starting to assess whether to move away from our current products to the Microsoft System Center suite of products.  I&#8217;m in the process of gathering numbers for what we currently spend.  Then, we move on to see what the equivalent would cost with System Center.  It should be an interesting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=57&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m on a team that&#8217;s starting to assess whether to move away from our current products to the Microsoft System Center suite of products.  I&#8217;m in the process of gathering numbers for what we currently spend.  Then, we move on to see what the equivalent would cost with System Center.  It should be an interesting investigation.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=57&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2011/10/26/new-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
		<item>
		<title>ITSM 6.3.2 and IMAP/SSL</title>
		<link>http://jeffeske.wordpress.com/2011/10/20/itsm-6-3-2-and-imapssl/</link>
		<comments>http://jeffeske.wordpress.com/2011/10/20/itsm-6-3-2-and-imapssl/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 18:34:40 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[ITSM]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/?p=50</guid>
		<description><![CDATA[Found out that the email listener in FrontRange ITSM 6.3.2 doesn&#8217;t work with IMAP over SSL.  There is evidently something buggy about FSMTService.exe.  I was able to get a hotfix from FRS that was basically just a fixed version of FSMTservice, and it solved the problem.  What I was getting originally were errors like: &#8220;Error [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=50&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Found out that the email listener in FrontRange ITSM 6.3.2 doesn&#8217;t work with IMAP over SSL.  There is evidently something buggy about FSMTService.exe.  I was able to get a hotfix from FRS that was basically just a fixed version of FSMTservice, and it solved the problem.  What I was getting originally were errors like:</p>
<p>&#8220;Error occured while connecting to the email server. Reason: NO Logon failure: account currently disabled. &#8220;</p>
<p>and</p>
<p>&#8220;Error occured while connecting to the email server. Reason: NO The parameter is incorrect.&#8221;</p>
<p>and</p>
<p>&#8220;Error occured while connecting to the email server. Reason: NO The referenced account is currently locked out and may not be logged on to.&#8221;</p>
<p>After it would throw some errors, FSMT would crash.  You could restart FSMT and it would work for a minute, throw errors, then crash again.  The fact that there were multiple different errors made it harder to track down.  Eventually the Support Tech was able to find a Knowledge Base (KB) article in their system that described a different error with IMAP/SSL, but we decided to give it a try and see if it solved my issue.  Lo and behold, it did!</p>
<p>Evidently, the issue is fixed in ITSM 3.6.4, but the hotfix will fix older versions.</p>
<p>Original 6.3.2 version of FSMT: <span style="color:#003366;"><strong>6.0.1001.811</strong></span></p>
<p>Fixed version of FSMT: <strong><span style="color:#003366;">6.3.1001.913</span></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=50&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2011/10/20/itsm-6-3-2-and-imapssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
		<item>
		<title>ITSM and Checking IMAP over SSL</title>
		<link>http://jeffeske.wordpress.com/2011/10/12/itsm-and-checking-imap-over-ssl/</link>
		<comments>http://jeffeske.wordpress.com/2011/10/12/itsm-and-checking-imap-over-ssl/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 19:20:05 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ITSM]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/?p=46</guid>
		<description><![CDATA[We’re in the process of moving our users from Exchange 2003 to Exchange 2010.  In that process, we’re needing to move our ITSM mailboxes to 2010 also.  As of right now, it’s looking like the version of ITSM that we’re on (6.3.2) doesn’t appear to like the fact that the Exchange server will be serving [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=46&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>We’re in the process of moving our users from Exchange 2003 to Exchange 2010.  In that process, we’re needing to move our ITSM mailboxes to 2010 also.  As of right now, it’s looking like the version of ITSM that we’re on (6.3.2) doesn’t appear to like the fact that the Exchange server will be serving up IMAP over SSL.</p>
<p dir="ltr">In the course of troubleshooting this, I’ve learned how to at least test that I’m able to connect to the IMAP server, via SSL.  With a non-SSL IMAP connection, you can just use telnet -</p>
<p dir="ltr"><span style="color:#0000ff;">machine:~$ telnet mydomain 143</span>.  That should be enough to confirm that you can get a connection to the server.  With an SSL-enabled connection though, you of course need to connect via an SSL connection.  Linux to the rescue!  I run a Linux desktop, so I have an SSL client at my fingertips.  I’m able to simply run openssl and connect to the IMAP server, over SSL.  Simply open a terminal and run openssl’s client &#8211; <span style="color:#0000ff;">machine:~$ openssl s_client -connect mydomain:993</span></p>
<p dir="ltr">Since the problem that I’m seeing appears to be a connection issue, I haven’t gone beyond simply checking the connection, but I would assume that, at that point, you should be able to run the usual IMAP commands.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=46&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2011/10/12/itsm-and-checking-imap-over-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding PHP to IIS 7.5</title>
		<link>http://jeffeske.wordpress.com/2011/10/04/adding-php-to-iis-7-5/</link>
		<comments>http://jeffeske.wordpress.com/2011/10/04/adding-php-to-iis-7-5/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 19:25:10 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[ITSM]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/?p=40</guid>
		<description><![CDATA[Got php up and running successfully on IIS 7.5 (Windows Server 2008R2) today.  Will post the step-by-step instructions shortly.  I&#8217;m hoping that this will allow me add the ability to create web forms that can submit tickets directly ITSM.  We&#8217;ll see how it pans out.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=40&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Got php up and running successfully on IIS 7.5 (Windows Server 2008R2) today.  Will post the step-by-step instructions shortly.  I&#8217;m hoping that this will allow me add the ability to create web forms that can submit tickets directly ITSM.  We&#8217;ll see how it pans out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=40&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2011/10/04/adding-php-to-iis-7-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
		<item>
		<title>UbuntuOne</title>
		<link>http://jeffeske.wordpress.com/2011/09/22/ubuntuone/</link>
		<comments>http://jeffeske.wordpress.com/2011/09/22/ubuntuone/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 15:43:45 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jeffeske.wordpress.com/?p=36</guid>
		<description><![CDATA[I was hoping, now that UbuntuOne has a (beta) Windows client, that I&#8217;d have a good cross-platform cloud spot to save files to.  Well, that&#8217;s not working out so far.  the syncing, on BOTH the Windows side AND the Linux side is painfully slow, if it happens at all.  I&#8217;ve had to kill the sync [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=36&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was hoping, now that UbuntuOne has a (beta) Windows client, that I&#8217;d have a good cross-platform cloud spot to save files to.  Well, that&#8217;s not working out so far.  the syncing, on BOTH the Windows side AND the Linux side is painfully slow, if it happens at all.  I&#8217;ve had to kill the sync daemon on the Linux side to get it to acknowledge that it is indeed not &#8220;up-to-date&#8221; and download what&#8217;s missing.  On the Windows side, it just seems to creep along taking FOREVER to update &#8211; even with tweaking the available upload/download speed settings.  As much as I&#8217;d like to, I don&#8217;t think that I can even blame this on the Windows client.  Another that that I&#8217;ve noticed that there seems to be a noticeable slowdown, on both machines, when running the UbuntuOne client.</p>
<p>The other issue is the apparent lack of encryption of the stored data.  I know that&#8217;s pretty common for most of the cloud options, but it would be nice to have.</p>
<p>I guess I&#8217;ll stick to my personal server folder with SSH access and encryption/decryption locally.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=36&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2011/09/22/ubuntuone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
		<item>
		<title>9/11</title>
		<link>http://jeffeske.wordpress.com/2011/09/11/911/</link>
		<comments>http://jeffeske.wordpress.com/2011/09/11/911/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 13:32:46 +0000</pubDate>
		<dc:creator>jeffeske</dc:creator>
		
		<guid isPermaLink="false">http://jeffeske.wordpress.com/2011/09/11/911/</guid>
		<description><![CDATA[Listening to the reading of the names, and the vast diversity it represents, points out what&#8217;s so great about this country.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=35&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Listening to the reading of the names, and the vast diversity it represents, points out what&#8217;s so great about this country.</p>
<div align="left"></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffeske.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffeske.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffeske.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffeske.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeffeske.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeffeske.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeffeske.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeffeske.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffeske.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffeske.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffeske.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffeske.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffeske.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffeske.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffeske.wordpress.com&amp;blog=8121388&amp;post=35&amp;subd=jeffeske&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeffeske.wordpress.com/2011/09/11/911/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3334f76b5ddc9113bd7b5dc4768ab1a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeffeske</media:title>
		</media:content>
	</item>
	</channel>
</rss>
