<?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/"
	>

<channel>
	<title>Office of Information Technology Blog &#187; Groupwise</title>
	<atom:link href="http://blog.oit.wvu.edu/category/email/groupwise/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oit.wvu.edu</link>
	<description>OIT’s technology blog for WVU faculty, staff and students</description>
	<lastBuildDate>Fri, 20 Nov 2009 20:25:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automating the gMigrate Program</title>
		<link>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/</link>
		<comments>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 15:21:43 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1287</guid>
		<description><![CDATA[A technique to automate the GroupWise calendar migration program, gMigrate]]></description>
			<content:encoded><![CDATA[<p>Back in April 2009, I wrote about <a href="http://blog.oit.wvu.edu/2009/04/07/gmigrate/">Getting Your GroupWise Calendar on an iPod Touch (a penny-pincher’s solution)</a>. This trick lets you use a free program called gMigrate to migrate your GroupWise calendar over to Google Sync (Beta), which in turn synchronizes your calendar with your iPhone or Touch. This synchronization process is entirely manual, however. You have to run gMigrate whenever you update your GroupWise calendar and want to have that information to appear on your iPhone. Well, that&#8217;s not entirely true any more. With a little bit of Windows tweaking, I can show you how to automate this process.</p>
<p>In a nutshell, we are going to use a freeware scripting language called AutoIt to run the gMigrate program for us, and then we are going to use the <a href="http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows">Windows Scheduled Tasks utility</a> to automatically run the script.</p>
<h2>AutoIt</h2>
<p><a href="http://www.autoitscript.com/autoit3/">AutoIt</a> is a freeware scripting language, which can be used to automate the Windows graphical user interface. It will work on Windows 2000, XP, 2003, Vista, and Windows Server 2008. One of AutoIt&#8217;s cool features is a Windows Info monitor, which you use to determine the ID numbers of command buttons. Once you know those IDs you can write an AutoIt script that will execute a program and interact with it by clicking specific command buttons. In addition, you can also complile the script into an executable file.</p>
<p>The download page for AutoIt is here: <a href="http://www.autoitscript.com/autoit3/downloads.shtml">http://www.autoitscript.com/autoit3/downloads.shtml</a>.</p>
<p>Assuming that you have already configured your gMigrate with your GroupWise and GMail account information, here is a simple script that will run gMigrate and click the appropriate command buttons:</p>
<blockquote><p>; gMigrate Automation by Roman Olynyk, 8/4/2009<br />
Run ( &#8220;C:\Program Files\gMigrate\CompanionLink.exe&#8221;)<br />
WinWaitActive(&#8221;gMigrate&#8221;, &#8220;&#8221;, 10)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 1881]&#8220;)<br />
WinWaitActive ( &#8220;gMigrate&#8221;, &#8220;Completed Synchronization&#8221;, 20)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 2]&#8220;)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 1]&#8220;)</p></blockquote>
<p>I saved my script with the name &#8220;automigrate.AU3.&#8221; Here&#8217;s what this script does:</p>
<ol>
<li>Comments begin with semi-colons</li>
<li>The Run command needs the exact path. In this script I am using the default installation path for gMigrate. If your path is different, change it here.</li>
<li>The WinWaitActive command will wait for up to 10 seconds for the dialog box titled &#8220;gMigrate&#8221; to appear.</li>
<li>Once the dialog box appears, simulate a mouse click to the &#8221; Migrate&#8221; command button (ID 1881).</li>
<li>After clicking, wait for up to 20 seconds for the message &#8220;Completed Synchronization&#8221; to appear.</li>
<li>When &#8220;Completed Synchronization&#8221; dialog appears, click the OK button (ID 2).</li>
<li>Finally, clicking the OK button (ID 1) on the gMigrate dialog causes that program to close.</li>
</ol>
<p>That&#8217;s it. This is a bare-bones script. A more careful programmer can add proper error handling routines to allow for instances where the gMigrate program might fail. Also, this script will run as a foreground task, as I have not added any commands to hide its operation from the user.</p>
<p>You can test out the script by right-clicking over the AU3 file and selecting &#8220;Run Script&#8221; from the top of the menu. Once you are satisfied with the operation, you can go to the Tools menu of the SciTE4AutoIt3 program editor and run the complile command, which will convert your script into an executable file.</p>
<p>In a <a href="http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/">separate posting</a>, we&#8217;ll talk about how you can configure Scheduled Tasks in Windows to periodically run your migration script.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a Scheduled Task in Windows</title>
		<link>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/</link>
		<comments>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 14:54:40 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1272</guid>
		<description><![CDATA[The Windows Scheduled Task utility can be configured to run a script file that can migrate your GroupWise calendar to your iPhone or Touch]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/">Previously</a>, I showed you how you can use <strong>AutoIt</strong> to create a simple script that will click through the gMigrate program. Once you have turned your script into an executable file, you can now tell Windows to run it at certain intervals. The following instructions assume that you are using Windows XP.</p>
<ol>
<li>In the Windows XP Control Panel, select the <strong>Scheduled Tasks</strong> command.</li>
<li>With Scheduled Tasks open, double-click on the &#8220;Add Scheduled Task&#8221; icon, which should be at the top of the list of tasks.<br />
<img class="alignleft size-full wp-image-1274" src="http://blog.oit.wvu.edu/files/2009/08/scheduled_tasks.png" alt="scheduled_tasks" width="128" height="19" /></li>
<li>A Scheduled Task Wizard will appear; click <strong>Next&gt;</strong> to continue.</li>
<li>The Scheduled Task Wizard will display a list of programs from which you can select. Your automigrate program will not be in this list, so you must use the <strong>Browse</strong> command button to locate and select it.</li>
<li>Once you have selected the program, the wizard will ask you to type in a name for the task, followed by a group of radio buttons for when you would like this task performed. I chose &#8220;Daily.&#8221;<br />
<img class="alignnone size-medium wp-image-1275" src="http://blog.oit.wvu.edu/files/2009/08/automigrate_sched-300x221.png" alt="automigrate_sched" width="300" height="221" /></li>
<li>After clicking <strong>Next&gt;</strong> again, the Scheduled Task Wizard asks you to select the time and day when you would like the task to start. I&#8217;m configuring my task to run while I&#8217;m usually at work, so I chose a time in the morning after I&#8217;ve had a chance to settle in and possibly work with my calendar &#8212; say 9:30 a.m. Also, since I don&#8217;t normally work weekends, I can opt to run this task only on <strong>Weekdays</strong>.<br />
<img class="alignnone size-medium wp-image-1276" src="http://blog.oit.wvu.edu/files/2009/08/running_on_weekdays2-300x221.png" alt="running_on_weekdays2" width="300" height="221" /></li>
<li>The next dialog asks you to provide your username and password for you computer. When you have typed in that information, click the <strong>Next&gt;</strong> button.</li>
<li>The wizard will display a dialog box, which confirms when Windows will run this task. Notice that there&#8217;s a checkbox where you can &#8220;Open advanced properties for this task when I click Finish.&#8221; <strong>Select this checkbox</strong>, because it will allow you to set how often you want this task to run. As an added precaution, note that you can choose to stop the task if it is still running at the time you&#8217;ve selected.<br />
<img class="alignnone size-full wp-image-1277" src="http://blog.oit.wvu.edu/files/2009/08/confirmation_dialog.png" alt="confirmation_dialog" width="441" height="325" /></li>
<li>The Advanced Schedule Options let you set how many times a day you want the program to run.<br />
<img class="alignnone size-full wp-image-1278" src="http://blog.oit.wvu.edu/files/2009/08/advanced_schedule.png" alt="advanced_schedule" width="368" height="300" /></li>
<li>Once you click the <strong>Apply</strong> button, your scheduled task will run under the conditions that you have set for it.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Getting Your GroupWise Calendar on an iPod Touch (a penny-pincher&#8217;s solution)</title>
		<link>http://blog.oit.wvu.edu/2009/04/07/gmigrate/</link>
		<comments>http://blog.oit.wvu.edu/2009/04/07/gmigrate/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 13:00:11 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1041</guid>
		<description><![CDATA[Google Sync and gMigrate will let you display your GroupWise Calendar on your iPod Touch or iPhone.]]></description>
			<content:encoded><![CDATA[<p><em>A couple of months ago we posted about <a href="http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/">accessing GroupWise email on an iPhone or iPod Touch</a>. At that time we did not know of a way to sync GroupWise calendars with these devices as well.  Since then we&#8217;ve found one method to do that and, though not perfect, it might be of interest to you.  It should be noted that this is</em><em> just a tip we&#8217;ve discovered and might be of use to some of you</em><em> and should be attempted at your own risk. This is not to be considered a support document. Let us know if you know of any other tips we should include on the blog for these devices.  Thanks! &#8211; Ed.</em></p>
<p>I depend upon my WVU GroupWise account to keep track of my appointments and tasks, but I’m not always at my PC.  Until recently, however, my only recourse for a portable calendar was to use <a href="http://oit.wvu.edu/training/instructions/groupwise/gwpdac701.php">PDA Connect</a> to synchronize my PalmPilot with GroupWise.</p>
<p>My latest device, an iPod Touch, appeared to support many PDA-like functions.  However, I quickly discovered that getting my GroupWise calendar onto the Touch was going to be expensive, vis-à-vis <a href="http://www.apple.com/mobileme/">Apple’s MobileMe</a> or <a href="http://www.companionlink.com/products/companionlink.html">CompanionLink</a>.  What’s a penny-pincher to do?</p>
<p>CompanionLink Software used to have a free product called <a href="http://www.companionlink.com/products/gmigrate.html">gMigrate</a>, which allowed me to port my GroupWise calendar data over to <a href="http://www.google.com/calendar/">Google Calendar</a>.  This is not a dynamic process:  I have to run gMigrate every time that I want to pass my GroupWise calendar over to Google calendar.</p>
<p>The &#8220;Eureka!&#8221; moment came when Google announced <a href="http://www.google.com/mobile/apple/sync.html">Google Sync (Beta) for the iPhone</a>.  This tool lets you synchronize the built-in calendar and contacts on an iPhone (and iPod Touch) with your Google account.  So, you can go from GroupWise to Google with gMigrate, and you can then go from Google to an iPod Touch with Google Sync.  Although this sounds rather complex, you can manage the entire process in just a few clicks – after the initial configuration, of course.</p>
<p>Ingredients:</p>
<ul>
<li>iPhone or iPod Touch</li>
<li>GroupWise account</li>
<li>Google account</li>
<li>Google Sync</li>
<li>gMigrate</li>
<li>WiFi access</li>
</ul>
<h2>Getting gMigrate</h2>
<p>Although gMigrate is no longer available directly from CompanionLink Software, you can still download it from a number of software repositories, such as <a href="http://download.cnet.com/gMigrate/3000-2064_4-10629569.html">Cnet’s download.com</a> or <a href="http://www.softpedia.com/get/Office-tools/Diary-Organizers-Calendar/gMigrate.shtml">Softpedia</a>.</p>
<p>Install gMigrate by running the executable setup launcher.  When you run gMigrate, configure it as follows:</p>
<p><img class="aligncenter size-full wp-image-1045" src="http://blog.oit.wvu.edu/files/2009/04/image001.jpg" alt="image001" width="231" height="276" /></p>
<ol>
<li>In the Email field, type in your Gmail username.</li>
<li>In the Password field, type in your Gmail password.</li>
<li>In the From field, click the selection arrow and select GroupWise 6.5.</li>
<li>Click on the Advanced button, which should display a GroupWise Login dialog:<br />
<img class="aligncenter size-full wp-image-1156" src="http://blog.oit.wvu.edu/files/2009/04/image002-gmigrate.jpg" alt="image002-gmigrate" width="356" height="269" /></p>
<ol type="a">
<li>Type in your GroupWise UserID and password</li>
<li>Click OK.</li>
</ol>
</li>
<li>Click on the Migrate button.  A CompanionLink Process dialog will indicate your progress.</li>
</ol>
<p><img class="aligncenter size-full wp-image-1043" src="http://blog.oit.wvu.edu/files/2009/04/image003.jpg" alt="image003" width="281" height="127" /></p>
<p>Successful completion is indicated by a dialog that looks like this:</p>
<p><img class="aligncenter size-full wp-image-1042" src="http://blog.oit.wvu.edu/files/2009/04/image004.jpg" alt="image004" width="207" height="127" />Google calendar should now be populated with calendar items from your GroupWise account.  Remember that you will have to run gMigrate each time that you want any changes in your GroupWise calendar to appear in Google Calendar (i.e., start gMigrate and click on the Migrate button).</p>
<h2>Getting Google Sync for iPhone</h2>
<p>Google Sync for iPhone uses the Microsoft Exchange ActiveSync protocol to synchronize the data on your iPod Touch with your Google Calendar.  It will support synchronization with up to five calendars and the contacts in your My Contacts group.</p>
<p>Setting up Google Sync is a fairly straightforward process, but you should be aware that Sync is a beta product.  In addition, the Sync setup will delete the existing contacts and calendar information on your iPhone or Touch.  Backup your data first!</p>
<p>It is not necessary for me to reproduce Google’s instructions here.  Just point your browser to <a href="http://www.google.com/support/mobile/bin/answer.py?answer=138740&amp;topic=14252">Sync: Set Up Your iPhone or iPod Touch</a>.</p>
<p>Once you’ve set up Google Sync, the synchronization should begin automatically if you have Push enabled on your device.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/04/07/gmigrate/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Sometimes MIME *can* be a terrible thing</title>
		<link>http://blog.oit.wvu.edu/2009/03/17/sometimes-mime-can-be-a-terrible-thing/</link>
		<comments>http://blog.oit.wvu.edu/2009/03/17/sometimes-mime-can-be-a-terrible-thing/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 17:53:55 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[attachments]]></category>
		<category><![CDATA[mime]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=974</guid>
		<description><![CDATA[One little thing -- like a logo -- might double the size of your email.]]></description>
			<content:encoded><![CDATA[<p>If you are a GroupWise user, then you should continue reading this, because you could potentially reduce the size of your mail files – and those of any other GroupWise user you communicate with – by half.</p>
<div id="attachment_992" class="wp-caption alignleft" style="width: 178px"><img class="size-full wp-image-992" src="http://blog.oit.wvu.edu/files/2009/03/flyingwv2.png" alt="How can a 587-byte image like this double the size of my email?" width="168" height="149" /><p class="wp-caption-text">How can a 587-byte image like this double the size of my email?</p></div>
<p>Here’s the scenario:  you’re sending a five megabyte attachment, like a PDF, to a group of coworkers.   However, one of the people on your distribution list is “outside” of our mail.wvu.edu system – they’re at hsc.wvu.edu, for example.  The entire body of your message merely says “See attached” and includes your GroupWise signature file, which serves as your electronic business card.  Being the proud Mountaineer, your signature even sports a little 587-byte “flying WV” logo.</p>
<p>You send your mail, but a few seconds later a message comes back from Mailer-Daemon informing you that your message is undeliverable – “Message size exceeds fixed limit.”</p>
<p>“Now wait a minute!” you say.  “The PDF attachment was only 5mb, and the file size limit is supposed to be 10mb.  What gives?”</p>
<p>Would you believe that the 587-byte graphic in the body of your message has caused your mail file to double in size?</p>
<p>Normally, GroupWise would have treated the tiny graphic in the body of your message as part of a rich text message.  However, as soon as GroupWise determined that one of your email recipients was outside of our mail system, it wrapped the entire message, attachment and all, into a MIME.822 “envelope” and added that to the overall email package.  It did this so that any unknown mail client on the internet would be able to make sense of your message.</p>
<p>The only way to prevent this from happening is to avoid putting a graphic (or any other binary) in the body of your message when you are sending to an outside user.</p>
<p>This is not just a cautionary tale about how to exceed a 10mb size limit with a 5mb attachment.  Think about it:  each time that you send an email with a MIME.822 attachment you are doubling the size of an item in your Sent Items folder.  You are also doubling the size of the email that everyone else on your distribution list receives from you!  Sometimes MIME can be a terrible waste.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/03/17/sometimes-mime-can-be-a-terrible-thing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GroupWise email on your iPhone or iPod Touch</title>
		<link>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/</link>
		<comments>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 17:31:42 +0000</pubDate>
		<dc:creator>Steven Marra</dc:creator>
				<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=669</guid>
		<description><![CDATA[Setting the Mail app on your iPhone or iPod Touch to get GroupWise email is quick and easy!
Please note this does not apply to the GroupWise calendar. At this time, the best way to access your GroupWise calendar on your Apple device is through Safari via https://wvugw.wvu.edu
Checklist:
-A 2nd generation iPhone or iPod Touch, or a [...]]]></description>
			<content:encoded><![CDATA[<p>Setting the Mail app on your iPhone or iPod Touch to get GroupWise email is quick and easy!</p>
<p><strong><em>Please note this does not apply to the GroupWise calendar. At this time, the best way to access your GroupWise calendar on your Apple device is through Safari via <a href="https://wvugw.wvu.edu/gw/webacc">https://wvugw.wvu.edu</a></em></strong></p>
<p>Checklist:</p>
<p>-A 2nd generation iPhone or iPod Touch, or a 1st generation iPhone or iPod Touch with the latest system update installed (version 2.2).</p>
<p>- You&#8217;ll need your username and password for the GroupWise email you want to access.</p>
<p>- You&#8217;ll need your Central ID username and password, too. If you don&#8217;t know yours, start here <a href="http://centralid.wvu.edu">http://centralid.wvu.edu</a></p>
<p>- Make sure your device has an active connection to the internet.</p>
<ol>
<li>Find and open <em>Settings<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/settings.jpg"><img class="alignnone size-medium wp-image-672" src="http://blog.oit.wvu.edu/files/2009/01/settings.jpg" alt="" width="64" height="84" /><br />
</a></li>
<li>Select <em>Mail, Contacts, Calendars<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/mailcontacts.jpg"><img class="alignnone size-medium wp-image-673" src="http://blog.oit.wvu.edu/files/2009/01/mailcontacts.jpg" alt="" width="300" height="42" /></a></li>
<li>Select <em>Add Account&#8230;<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/account1.jpg"><img class="alignnone size-medium wp-image-681" src="http://blog.oit.wvu.edu/files/2009/01/account1.jpg" alt="" width="300" height="179" /></a></li>
<li>Choose <em>Other<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/other.jpg"><img class="alignnone size-medium wp-image-675" src="http://blog.oit.wvu.edu/files/2009/01/other.jpg" alt="" width="300" height="60" /></a></li>
<li>Enter your account information:<br />
<a href="http://blog.oit.wvu.edu/files/2009/01/newaccount1.jpg"><img class="alignnone size-medium wp-image-686" src="http://blog.oit.wvu.edu/files/2009/01/newaccount1.jpg" alt="" width="300" height="227" /></a></p>
<ul>
<li><em>Name</em> = GroupWise</li>
<li><em>Address</em> is your GroupWise email address.</li>
<li><em>Password</em> is the password you use to access your GroupWise email.</li>
<li><em>Description</em> should fill in automagically.</li>
<li>Tap <em>Save</em> to continue.</li>
</ul>
</li>
<li>Under <em>Incoming Mail Server</em>, enter the <em>Host Name</em> <strong>gwpop.wvu.edu<br />
</strong><a href="http://blog.oit.wvu.edu/files/2009/01/accountinfo1.jpg"><img class="alignnone size-medium wp-image-680" src="http://blog.oit.wvu.edu/files/2009/01/accountinfo1.jpg" alt="" width="300" height="135" /></a><a href="http://blog.oit.wvu.edu/files/2009/01/accountinfo.jpg"></a></p>
<ul>
<li><em>User Name</em> is the name you use to log in to your GroupWise email.</li>
<li><em>Password</em> can be left alone. It carries over from earlier.</li>
</ul>
</li>
<li>Under <em>Outgoing Mail Server</em>, enter the <em>Host Name</em> <strong>exsmtp.systems.wvu.edu<br />
</strong><a href="http://blog.oit.wvu.edu/files/2009/01/outgoing2.jpg"><img class="alignnone size-medium wp-image-682" src="http://blog.oit.wvu.edu/files/2009/01/outgoing2.jpg" alt="" width="300" height="161" /></a><a href="http://blog.oit.wvu.edu/files/2009/01/outgoing.jpg"></a></p>
<ul>
<li><em>User Name</em> is your Central ID.</li>
<li><em>Password</em> is your Central ID password.</li>
<li>Tap <em>Save</em> to continue.</li>
</ul>
</li>
</ol>
<p>Now your device will attempt to log in and retrieve your email. Chances are, it will ask you to accept a security certificate. If it does, please do! Or, if it fails to access your account the 1st time, follow the prompts to try again.</p>
<p>Sometimes it takes a minute or two for everything to sync. Be patient =)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>A look into the system of spam [The Daily Athenaeum]</title>
		<link>http://blog.oit.wvu.edu/2008/09/24/a-look-into-the-system-of-spam-the-daily-athenaeum/</link>
		<comments>http://blog.oit.wvu.edu/2008/09/24/a-look-into-the-system-of-spam-the-daily-athenaeum/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 13:44:27 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[MIX]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Scams]]></category>
		<category><![CDATA[The Internet]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[the daily athenaeum]]></category>
		<category><![CDATA[wvu]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=155</guid>
		<description><![CDATA[Our student newspaper posted a story on Monday about spam and how OIT deals with it.  The article details some impressive stats.  Spam is a touchy subject.  No one likes to get it and if even a little bit gets through, it seems like we have a problem.  The fact that WVU receives 10 MILLION+ [...]]]></description>
			<content:encoded><![CDATA[<p>Our <a href="http://www.da.wvu.edu">student newspaper</a> posted a story on Monday about spam and how OIT deals with it.  The article details some impressive stats.  Spam is a touchy subject.  No one likes to get it and if even a little bit gets through, it seems like we have a problem.  The fact that WVU receives 10 MILLION+ emails a day <em>and </em>95% of that is spam never ceases to amaze me.  I think it is also important to remember, as the article pointed out, that we do not filter email based on content.  We feel that would be inappropriate for an academic institution to do so.</p>
<p>One of the students quoted indicated they wished there was a way to mark an email as spam.  I have to admit, I&#8217;d like that too.   Unfortunately, that would be part of the application that you use to check email (MIX or GroupWise) and not under OIT control.</p>
<p>Here is the article from the DA.</p>
<blockquote><p><a href="http://www.da.wvu.edu/show_article.php?story_id=39076&amp;archive_date=2008-09-22"><strong>A look into the system of spam</strong></a><br />
By Danielle Clements</p>
<p>Every day, the Office of Information Technology receives about 10 million incoming e-mails from outside of the University. And of those 10 million e-mails, 95 percent are spam.</p>
<p>To block spam and other security issues, OIT utilizes specialized software specifically made for businesses, universities and other organizations.</p>
<p>As e-mails queue up in the system, the software check scans for e-mail and IP addresses which are &#8220;blacklisted.&#8221;</p></blockquote>
<p>Read the rest of the story online at the <a href="http://www.da.wvu.edu/show_article.php?story_id=39076&amp;archive_date=2008-09-22">The Daily Athenaeum</a>.</p>
<p>If you&#8217;d like to take some measures toward cutting down on the amount of spam you receive, take a look at our <a href="http://oit.wvu.edu/resources">online resources on this and other topics.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/09/24/a-look-into-the-system-of-spam-the-daily-athenaeum/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The GroupWise Powerguide &#8211; a book review</title>
		<link>http://blog.oit.wvu.edu/2008/07/31/the-groupwise-powerguide-a-book-review/</link>
		<comments>http://blog.oit.wvu.edu/2008/07/31/the-groupwise-powerguide-a-book-review/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 18:10:41 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[book review]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=4</guid>
		<description><![CDATA[For many people at WVU, GroupWise is just the name of the email program that they have to use &#8212; sometimes grudgingly. The true strength behind GroupWise is that it is actually something called an &#8220;integrated collaborative environment,&#8221; which includes not only email but also calendaring, instant messaging and document management. It is software designed [...]]]></description>
			<content:encoded><![CDATA[<p>For many people at WVU, GroupWise is just the name of the email program that they have to use &#8212; sometimes grudgingly. The true strength behind GroupWise is that it is actually something called an &#8220;integrated collaborative environment,&#8221; which includes not only email but also calendaring, instant messaging and document management. It is software designed to help people involved in a common task &#8212; like running a large university &#8212; achieve their goals.</p>
<p>In my role of providing advanced end-user support for GroupWise, I had stumbled across a Novell site called <a href="http://www.novell.com/support/search.do?cmd=displayKC&amp;docType=kc&amp;externalId=feature-16244html&amp;sliceId=&amp;dialogID=216186&amp;stateId=1%200%20214837" target="_blank">GroupWise® Cool Solutions™</a>, where &#8220;users, administrators and developers share their secrets.&#8221; One of the links off of this page is a reference to a book titled <em><strong>The GroupWise Powerguide</strong></em>.</p>
<p>The book aims toward providing a resource for help desk professionals and IT managers working in a GroupWise environment. Perhaps the best description of this book comes from part of its preface:</p>
<blockquote><p>This book is a collection of tips and tricks that will help you get the most out of GroupWise. This book is not a complete end-user manual, but it is aimed at those who already have some basic knowledge of GroupWise and who want to take the next step. We have tried to collect as many tips as possible and we have made each tip to be a standalone item. This means that you should be able to use each tip as a separate item. We then placed all of the tips into different categories, so you will find a series of tips on the same type of functionality in one chapter.</p></blockquote>
<p>I have been using GroupWise for a couple of years, and my initial impressions of it have admittedly not been favorable. In hindsight, much of this attitude was the result of ignorance. There is an incredible about of functionality built into GroupWise, but that functionality is not always readily apparent. <em><strong>The GroupWise Powerguide</strong></em> goes a long ways towards not only introducing you to a wealth of features, but also in how to make the best use of those features.</p>
<p>Here is a list of the major chapter titles:</p>
<ul>
<li>A quick sight seeing tour through your GroupWise environment</li>
<li>Rediscovering the client&#8217;s view</li>
<li>A closer look at your email options</li>
<li>Sign your messages to identify yourself</li>
<li>How folders can make your life much easier</li>
<li>Organize your life with calendars, tasks and notes</li>
<li>Managing your mailbox size &amp; archiving</li>
<li>Proxy &#8212; get access to more&#8230;</li>
<li>Address Books &#8212; keeping in touch</li>
<li>Rules: make GroupWise do the work for you</li>
</ul>
<p>I can enthusiastically recommend this book to anyone who is interested in getting the most out of GroupWise.</p>
<address><em><strong>The GroupWise Powerguide</strong></em><br />
Copyright© 2006 by Erno de Korte<br />
Published by Books4Brains, March 2006<br />
ISBN 9080893455<br />
</address>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/07/31/the-groupwise-powerguide-a-book-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
