Archive for January 21st, 2010

How do I set up my e-mail in Microsoft Outlook?

Method 1: Microsoft Office Outlook 2007

  1. Start Outlook.
  2. On the Tools menu, click Account Settings.
  3. Click New.
  4. Click Microsoft Exchange, POP3, IMAP, or HTTP, and then click Next.
  5. In the Auto Account Setup dialog box, click to select the Manually configure server settings or additional server types check box, and then click Next.
  6. Click Internet E-Mail, and then click Next.
  7. In the Server Information section, select IMAP for Account Type.
  8. In the Your Name box, enter your name exactly as you want it to appear to recipients.
  9. In the E-mail Address box, type your e-mail address, for example, jdoe@example.com
  10. In the User Name box, type your account name. Your account name is comprised of a “mor” prefix, and then four numbers.
  11. In the Password box, type your password.
  12. In the Incoming mail server box, type the name of your IMAP4 server, in this case “mailserver.morronimail.com”
  13. In the Outgoing mail server (SMTP) box, type the name of your SMTP server, in this case “smtpserver.morronimail.com”
  14. Note IMAP4 is a retrieval protocol. You must have SMTP to send your messages.

  15. Click Next after you have completed entering this configuration information, and then click Finish.

Method 2: Microsoft Office Outlook 2003 and earlier versions of Outlook

  1. Start Outlook.
  2. On the Tools menu, click E-mail Accounts.
  3. w_outlook2k3_11

  4. Under E-mail Accounts, click Add a new e-mail account, and then click Next.
  5. w_outlook2k3_2

  6. Click IMAP as the type of account that you are creating, and then click Next.
  7. w_outlook2k3_3

  8. In the Your Name box, enter your name exactly as you would like it to appear to recipients.
  9. In the E-mail Address box, type your e-mail address., for example, jdoe@example.com
  10. In the User Name box, type your account name. Your account name is comprised of a “mor” prefix, and then four numbers.
  11. In the Password box, type your password.
  12. In the Incoming mail server (IMAP) box, type the name of your IMAP4 server,in this case “mailserver.morronimail.com”
  13. In the Outgoing mail server (SMTP) box, type the name of your SMTP server, in this case “smtpserver.morronimail.com”
  14. w_outlook2k3_4

  15. Click Next after you have completed entering this configuration information, and then click Finish.
  16. w_outlook2k3_5

 

Things to remember when disabling SELinux

Perhaps SELinux was provided by default from your linux distribution of choice, or maybe it has been determined that it is not needed anymore for whatever applications the server is currently performing. Disabling SELinux is a matter of changing a line in your selinux config. The normal location would be to look in /etc/selinux/config and change the value of the SELINUX line.


# SELinux turned off
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled

However, we’re not done yet! Before you reboot your system you need to make sure that your
kernel boot line isn’t expecting SELinux to be active. We can set it to be specifically deactivated as
follows:

with Grub:

edit your /boot/grub/menu.lst


title  Ubuntu 9.04, kernel 2.6.28-11-generic
uuid   28cd3d96-e22c-4230-a63d-f7a73ec323e3
kernel  /boot/vmlinuz-2.6.28-11-generic root=/dev/sda3 ro rootdelay=10 quiet splash selinux=0
initrd  /boot/initrd.img-2.6.28-11-generic
quiet

Note: you may also need to add enforcing=0 to your kernel line, depending on your setup.