<?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>James&#039; Tools and Tricks &#187; Email</title>
	<atom:link href="http://jrudd.org/tag/email/feed/" rel="self" type="application/rss+xml" />
	<link>http://jrudd.org</link>
	<description>Tools, Tips and Hints for managing a network.</description>
	<lastBuildDate>Sun, 15 Apr 2012 12:59:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bulk Converting Global Groups to Universal and Mail Enabling</title>
		<link>http://jrudd.org/2011/07/bulk-converting-global-groups-to-universal-and-mail-enabling/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bulk-converting-global-groups-to-universal-and-mail-enabling</link>
		<comments>http://jrudd.org/2011/07/bulk-converting-global-groups-to-universal-and-mail-enabling/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 15:03:48 +0000</pubDate>
		<dc:creator>James Rudd</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[distribution groups]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[global address book]]></category>
		<category><![CDATA[global groups]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[universal group]]></category>

		<guid isPermaLink="false">http://jrudd.org/?p=260</guid>
		<description><![CDATA[We have started trying to better organise our groups into a more role based system, so that membership of one group is based on a role rather than a person. That way if the person holding a position changes (holiday, &#8230; <a href="http://jrudd.org/2011/07/bulk-converting-global-groups-to-universal-and-mail-enabling/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We have started trying to better organise our groups into a more role based system, so that membership of one group is based on a role rather than a person. That way if the person holding a position changes (holiday, retirement, etc) we just make one change and the replacement user gets all the correct rights. e.g. &lt;user&gt; -&gt; HT Subject -&gt; Executive, rather than &lt;user&gt; -&gt; Executive.</p>
<p>The problem with this is when an email is sent to a mail enabled group, all the member groups of that group must be mail enabled for their members to receive the email. So I needed to bulk mail enable a container of groups, and also hide these new groups from the Address Book as they don&#8217;t need to be visible to staff.</p>
<p>Exchange 2010 only allows you to mail enable a group if it is a Universal group, and then only one at a time from the EMC. To convert all the Global groups in a particular container to universal groups, I used the following Power Shell command.</p>
<pre class="brush: powershell; title: ; notranslate">Import-Module ActiveDirectory
# List Tables
Get-ADGroup -SearchScope Subtree -SearchBase &quot;OU=StaffGroups,OU=Staff,DC=win&quot; -Filter {GroupCategory -eq &quot;Security&quot; -and GroupScope -eq &quot;Global&quot;}  | Format-Table

# Convert Global groups to Universal
Get-ADGroup -SearchScope Subtree -SearchBase &quot;&lt;code&gt;OU=StaffGroups,OU=Staff,DC=win&lt;/code&gt;&quot; -Filter {GroupCategory -eq &quot;Security&quot; -and GroupScope -eq &quot;Global&quot;}  | Set-ADGroup -GroupScope Universal</pre>
<p>Once converted to Universal groups I wanted to Enable the Groups as Distribution groups in Exchange and hide them from the global Address Book. These groups are role based and need to exist for group expansion in Exchange, but I don&#8217;t want them visible to everyone.</p>
<pre class="brush: powershell; title: ; notranslate">
# Load AD Modules
Import-Module ActiveDirectory

# Load Exchange Snapins
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
. $env:ExchangeInstallPath\bin\RemoteExchange.ps1
Connect-ExchangeServer -auto

# Get list of Groups not Mail Enabled
$b = Get-ADGroup -SearchScope Subtree -SearchBase &quot;OU=StaffGroups,OU=Staff,DC=win&quot; -Filter {GroupCategory -eq &quot;Security&quot; -and GroupScope -eq &quot;Universal&quot; -and mail -notlike &quot;*&quot;}

# Enable email for each group, use the Group name without spaces as Alias
$b | ForEach-Object { Enable-DistributionGroup -Identity $_.DistinguishedName -Alias ($_.Name -replace '\s|,|\.') }

# Hide the newly created groups from Global Address book
$b | ForEach-Object { Set-DistributionGroup -Identity $_.DistinguishedName -HiddenFromAddressListsEnabled $true}
 </pre>
<h3>Notes:</h3>
<ul>
<li>Details on replacing letters for alias is from <a title="Removing invalid characters for alias" href="http://www.powershellcommunity.org/Forums/tabid/54/aft/2852/Default.aspx" target="_blank">here</a>.</li>
<li><a title="Managing Exchange 2010 with Remote PowerShell" href="http://www.mikepfeiffer.net/2010/02/managing-exchange-2010-with-remote-powershell/" target="_blank">Mike Pfeiffer&#8217;s blog</a> had great instructions on how to load Exchange snap-ins into a normal PowerShell session, such as in ISE.</li>
<li>I found a few sites that mentioned using get-group instead of get-adgroup. Not sure why the wrong command is given. <a href="http://www.petri.co.il/forums/showthread.php?t=54431">Petri</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jrudd.org/2011/07/bulk-converting-global-groups-to-universal-and-mail-enabling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contact</title>
		<link>http://jrudd.org/contact/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=contact</link>
		<comments>http://jrudd.org/contact/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 07:27:44 +0000</pubDate>
		<dc:creator>James Rudd</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[About]]></category>
		<category><![CDATA[Contact]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Me]]></category>

		<guid isPermaLink="false">http://jrudd.org/wordpress/contact/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>
<p>Comments or questions are welcome.</p>
<!-- Fast Secure Contact Form plugin 3.1.5.4 - begin - FastSecureContactForm.com -->
<div id="FSContact1" style="width:375px;">
<form action="http://jrudd.org/tag/email/feed/#FSContact1" id="si_contact_form1" method="post">
<div style="text-align:left;">
<span class="required">*</span>(denotes required field)
   </div>

         <div>
               <input type="hidden" name="si_contact_CID" value="1" />
        </div>

        <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_name1">Name:<span class="required">*</span></label>
        </div>
        <div style="text-align:left;">
                <input style="text-align:left; margin:0;" type="text" id="si_contact_name1" name="si_contact_name" value=""  size="40" />
        </div>

        <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_email1">E-Mail Address:<span class="required">*</span></label>
        </div>
        <div style="text-align:left;">
                <input style="text-align:left; margin:0;" type="email" id="si_contact_email1" name="si_contact_email" value=""  size="40" />
        </div>

        <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_subject1">Subject:<span class="required">*</span></label>
        </div>
        <div style="text-align:left;">
                <input style="text-align:left; margin:0;" type="text" id="si_contact_subject1" name="si_contact_subject" value=""  size="40" />
        </div>

        <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_message1">Message:<span class="required">*</span></label>
        </div>
        <div style="text-align:left;">
                <textarea style="text-align:left; margin:0;" id="si_contact_message1" name="si_contact_message"  cols="30" rows="10"></textarea>
        </div>

<div style="text-align:left; padding-top:5px;"> </div>
 <div style="width: 250px; height: 65px; padding-top:5px;">
    <img class="ctf-captcha" id="si_image_ctf1" style="border-style:none; margin:0; padding:0px; padding-right:5px; float:left;" src="http://jrudd.org/wp-content/plugins/si-contact-form/captcha/securimage_show.php?prefix=mMJSLfc80uXiNDTK" width="175" height="60" alt="CAPTCHA Image" title="CAPTCHA Image" />
    <input id="si_code_ctf_1" type="hidden" name="si_code_ctf_1" value="mMJSLfc80uXiNDTK" />
    <div id="si_refresh_ctf1">
      <a href="#" rel="nofollow" title="Refresh Image" onclick="si_contact_captcha_refresh('1','noaudio','/wp-content/plugins/si-contact-form/captcha','http://jrudd.org/wp-content/plugins/si-contact-form/captcha/securimage_show.php?prefix='); return false;">
      <img src="http://jrudd.org/wp-content/plugins/si-contact-form/captcha/images/refresh.png" width="22" height="20" alt="Refresh Image" style="border-style:none; margin:0; padding:0px; vertical-align:bottom;" onclick="this.blur();" /></a>
   </div>
   </div>

      <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_captcha_code1">CAPTCHA Code:<span class="required">*</span></label>
        </div>
        <div style="text-align:left;">
                <input style="text-align:left; margin:0; width:50px;" type="text" value="" id="si_contact_captcha_code1" name="si_contact_captcha_code"  size="6" />
       </div>


<div style="text-align:left; padding-top:5px;">
  <input type="hidden" name="si_contact_action" value="send" />
  <input type="hidden" name="si_contact_form_id" value="1" />
  <input type="submit" id="fsc-submit-1" style="cursor:pointer; margin:0;" value="Submit" /> 
</div>

</form>

<p style="font-size:x-small; font-weight:normal; padding-top:5px;">Powered by <a href="http://wordpress.org/extend/plugins/si-contact-form/">Fast Secure Contact Form</a></p>
</div>
<!-- Fast Secure Contact Form plugin 3.1.5.4 - end - FastSecureContactForm.com --><br />
<!--gb_contact_form--></p>
]]></content:encoded>
			<wfw:commentRss>http://jrudd.org/contact/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CC Day T4 2007: Installing and Using Moodle</title>
		<link>http://jrudd.org/2007/12/cc-day-t4-2007-installing-and-using-moodle/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cc-day-t4-2007-installing-and-using-moodle</link>
		<comments>http://jrudd.org/2007/12/cc-day-t4-2007-installing-and-using-moodle/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 05:58:16 +0000</pubDate>
		<dc:creator>James Rudd</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[DET]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Ganderton]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Novell]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[SMTP]]></category>

		<guid isPermaLink="false">http://jrudd.org/wordpress/2007/12/12/cc-day-t4-2007-installing-and-using-moodle/</guid>
		<description><![CDATA[This was very similar to a previous presentation given as part of the Tech KNOW Tour. However the Using Moodle presentation has some slight additions from Paul for a more technical audience and the spoken part of my presentation concentrated &#8230; <a href="http://jrudd.org/2007/12/cc-day-t4-2007-installing-and-using-moodle/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This was very similar to a previous presentation given as part of the <a href="http://jrudd.org//2007/11/17/tech-know-tour-07-moodle/" target="_blank">Tech KNOW Tour</a>. However the Using Moodle presentation has some slight additions from Paul for a more technical audience and the spoken part of my presentation concentrated on a more technical side.</p>
<h3>Some additional notes:</h3>
<p>To use the DET mail server you can either add <em>mail.det.nsw.edu.au</em> to the mail section of your php.ini file or add it to the<br />
Admin -&gt; Server -&gt; Email: SMTP Hosts section.<br />
If you wish to restrict to sending to DET emails you can add following to the <em>Allowed email domains</em> : &#8220;<em>education.nsw.gov.au det.nsw.edu.au</em>&#8220;.<br />
<ins datetime="2007-12-16T20:24:28">Make sure to test the mail server settings before adding any restrictions to domains.</ins></p>
<p>If using Novell or Mac OS you will need to use a different LDAP browser as <a href="http://jrudd.org//2007/11/20/ad-explorer/">AD Explorer</a> only works with Active Directory.<br />
For Novell I usually use the free Windows program <a href="http://www.ldapbrowser.com/download.htm" target="_blank">Softerra LDAP Browser</a> (<a href="http://www.ldapbrowser.com/download.htm" target="_blank">MSI</a>).<br />
There are a few Java based LDAP browsers that should work with Mac. A good Java based LDAP browser is <a href="http://www.jxplorer.org/" target="_blank">JXplorer</a> this should work on Mac, Windows and Linux. For some more info on Mac and LDAP look at this article on <a href="http://www.macdevcenter.com/pub/a/mac/2004/05/25/ldap.html" target="_blank">LDAP in Mac OS X Server</a> from the Mac Dev Center, it is not fully applicable as it also has home drive mapping but it does contain some useful info.</p>
<p>Paul Ganderton has made his <a href="http://www.sydneyboyshigh.com/intranet/moodle/course/view.php?id=822" target="_blank">Geography HSC</a> site avaliable for guests. You can also view some of the other course on our Moodle site. Look for this logo <img src="http://www.sydneyboyshigh.com/intranet/moodle/pix/i/user.gif" alt="Guest Access" width="16" height="16" />which means guest access is allowed.</p>
<p><strong>Bulk Operations:</strong> Some people asked about bulk deletion of users and courses.<br />
This section has been moved to <a href="http://jrudd.org//2007/12/14/moodle-bulk-deletion-operations/" target="_blank">Moodle: Bulk Deletion Operations.</a></p>
<h3>Presentations:</h3>
<ul>
<li>Note: There is a file embedded within this post, please visit this post to download the file.</li>
<li>Note: There is a file embedded within this post, please visit this post to download the file.</li>
<li>Note: There is a file embedded within this post, please visit this post to download the file.</li>
<li>Note: There is a file embedded within this post, please visit this post to download the file.</li>
<li>Note: There is a file embedded within this post, please visit this post to download the file.</li>
</ul>
<h3>Plugins used by Moodle</h3>
<p>Some of the items shown during talk are produced by plugins to Moodle. Below is a list of some of our favourites:</p>
<ul>
<li><a href="http://moodle.org/mod/data/view.php?d=13&amp;rid=319" target="_blank">Book</a>: Allows structuring resource pages with chapters and pages.</li>
<li><a href="http://jrudd.org//2007/11/30/moodle-and-gallery-212/">Gallery</a>: Shows slide shows and generates thumbnails of images. You can upload a zip file containing an entire folder structure of pictures, and auto-generate albums and sub-albums from it.</li>
<li><a href="http://moodle.org/mod/data/view.php?d=13&amp;rid=926">Course Menu</a>: Creates a Tree Structure as a block on side of page to assist navigation.</li>
<li>Note: There is a file embedded within this post, please visit this post to download the file. On the main SBHS Moodle page there is also a Library block that sends search queries to our Sentral library page. This will need to be customised by schools to point to their Sentral system or the new DET <em>My Library</em> system (only accessible inside DET WAN). Just modify the block_library.php file to point to your Library search page. To install place the library directory in your Moodle blocks folder.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jrudd.org/2007/12/cc-day-t4-2007-installing-and-using-moodle/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

