Check out Open Office Ninja to open all the new formatted files in linux OO Ninja
Mac Safe Mode
To start Mac OS X in safe mode turn on the power to the Mac. As soon as you hear the sound hold down the shift key until the grey screen appears with the revolving gear.
Incoming POP server pop3.live.com Incoming POP mail port 995 POP SSL required Yes User name Your Windows Live ID (for example: example555@hotmail.com) Password The password you use to sign in to Hotmail Outgoing SMTP server smtp.live.com Outgoing SMTP mail port 25 or 587 Authentication required Yes (your Windows Live ID and password) TLS/SSL required Yes (select TLS if available, if not select SSL)
Short Functions to allow for LDAP authentication.
function checkNTuser($username, $pasword){ $Domain="SOMEDOMAIN"; $Server="ldap://someaddress.co"; $auth=$username."@".$Domain; if (extension_loaded('ldap')){ echo "LDAP Module Enabled <br>"; $connect=ldap_connect($Server); if ($bind=ldap_bind($connect, $auth, $password)){ ldap_close($connect); echo "Success"; return(true); } else { ldap_close($connect); echo "Failed"; return(false); } } }