Configure a Mail Server

Size: px
Start display at page:

Download "Configure a Mail Server"

Transcription

1 SECTION 3 Configure a Mail Server In this section of the workbook, you learn how to do the following: Send Mail to root on 3-3 In this exercise, you send an to user root using the mail command and read this mail. Send Mail in the Local Network on 3-4 In this exercise, you send mail in the local network. You configure Postfix and test your configuration. Use Postfix on the Internet on 3-6 In this exercise, you configure Postfix to send to the Internet. Use Lookup Tables on 3-8 In this exercise, you use the Postfix lookup tables. Configure Cyrus IMAPd on 3-11 In this exercise, you install and set up CyrusIMAPd. Configure QPopper on 3-16 In this exercise, you install and activate QPopper. Configure Procmail on 3-20 In this exercise, you configure Procmail. Manage Spam with SpamAssassin on 3-23 In this exercise, you install and configure SpamAssassin to manage spam. Use AVMailGate as a Virus Scanner for on 3-27 In this exercise, you install and configure AVMailGate as a virus scanner for mails. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-1

2 SUSE Linux Enterprise Server 10: Networking Services / Workbook Use AMaViSd as Virus Scanner for on 3-30 In this exercise, you install and configure AMaViSd. WB 3-2 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

3 Exercise 3-1 Send Mail to root In this exercise, you send an to user root using the mail command. You also switch to user root and read this mail using mail. Do the following: 1. Open a terminal window. 2. Enter mail root. 3. Enter the subject My first with mail. 4. Enter the following 3 lines of text (press Enter after each line): I have just installed SUSE Linux Enterprise Server 10 on my computer and am ready for administration training. 5. When you finish, press Ctrl+D. 6. Su to root by entering su -; then enter a password of novell. 7. Enter mail. In the last line of the list you should find the mail message you just sent to root. 8. To read the message, enter the number in the second column of the table. 9. Delete the message by entering d and the number of the message (such as d 4). 10. Quit mail by entering q. 11. Verify that the message was deleted by entering mail; then exit mail by entering q. 12. Log out as root by entering exit. 13. Close the terminal window. (End of Exercise) Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-3

4 SUSE Linux Enterprise Server 10: Networking Services / Workbook Exercise 3-2 Send Mail in the Local Network In this exercise, you edit the Postfix configuration file /etc/postfix/main.cf. You configure Postfix to send mails in your local network. The domain name of the sender should be masqueraded for normal users. External mails should be forwarded to da1. Test your configuration by sending a mail to root. Do the following: Part I - Edit /etc/postfix/main.cf Part II - Test the Configuration Part I - Edit /etc/postfix/main.cf 1. Open a terminal window and enter su- to get root permissions. 2. When prompted, enter the root password novell. 3. Stop the postfix daemon by entering rcpostfix stop 4. Open the file /etc/postfix/main.cf in a text editor. 5. Scroll to the settings at the end of the file. 6. To accept mail only from the local network, edit the following options: inet_interfaces = your_ip-address, mynetworks_style = subnet (should already be set) smtpd_recipient_restrictions = permit_mynetworks, reject (on one line) 7. To rewrite the sender addresses and remove the host name, edit the following options: masquerade_exceptions = root (should already be set) masquerade_domains = digitalairlines.com WB 3-4 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

5 8. To deliver external mail to the relay host da1, edit the following option: relayhost = Save the file and close the editor. 10. Start Postfix by entering rcpostfix start Part II - Test the Configuration 1. To generate a test mail, do the following: a. Log out as user root by entering exit. b. Enter mail root@hostname.digitalairlines.com. 2. Enter the subject and some text and finish the mail by doing the following: a. Press Enter. b. Type. (dot). c. Press Enter. 3. Enter su - to get root permissions again. 4. When prompted, enter the root password novell. 5. Enter mail. 6. Enter the number corresponding to the mail you wrote. 7. Enter q to quit. (End of Exercise) Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-5

6 SUSE Linux Enterprise Server 10: Networking Services / Workbook Exercise 3-3 Use Postfix on the Internet In this exercise, you configure Postfix to send to the Internet. Only from the local network should be allowed to accepted; any that is not addressed to one of the local domains should be rejected. Do the following: 1. Open a terminal window and enter su- to get root permissions. 2. When prompted, enter the root password novell. 3. Stop the postfix daemon by entering rcpostfix stop 4. Open the file /etc/postfix/main.cf with your favorite text editor. 5. To configure Postfix to accept from the local network and that is addressed to any recipient in the domain digitalairlines.com, edit or add the following options: myhostname = hostname.digitalairlines.com mydomain = digitalairlines.com mydestination = $myhostname, localhost.$mydomain, $mydomain (on one line) smtpd_recipient_restrictions = permit_mynetworks, reject_unauth_destination The first three lines define hostnames and domains. The last line tells Postfix to accept mail as long it is sent from a host in mynetworks and to reject any mail that is not addressed to one of the domains defined in mydestination. 6. Save the file and close the editor. 7. Start Postfix by entering rcpostfix start. WB 3-6 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

7 (To test the configuration, you would have to access Postfix from an IP address outside the local network and try to send an to a domain other than digitalairlines.com. Postfix should not accept this mail. However, the courseroom setup does not provide such a machine.) (End of Exercise) Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-7

8 SUSE Linux Enterprise Server 10: Networking Services / Workbook Exercise 3-4 Use Lookup Tables In this exercise, you use the Postfix lookup tables. In part I, you create a new user jgoldman with password novell. In part II, you modify a lookup table that the messages of a new user jgoldman are sent with the sender address webmaster@digitalairlines.com. You test your configuration in part III. Do the following: Part I - Create a New User jgoldman and Write an to root Part II - Change the sender_canonical Table and Write the Again Part III - Test the Configuration Part I - Create a New User jgoldman and Write an to root 1. Open a terminal window and enter su - to get root permissions. 2. When prompted, enter the root password novell. 3. To create a new user jgoldman, enter useradd -G users -m jgoldman 4. Set the password for jgoldman to novell by entering passwd jgoldman Enter novell twice. 5. Log in as user jgoldman by entering su - jgoldman 6. To write an to user root, enter mail root@localhost 7. Enter a subject and some text; then finish the a. Press Enter. b. Type. (dot). WB 3-8 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

9 c. Press Enter. 8. To get root permissions, enter exit. 9. Enter mail. 10. Enter the number corresponding to the you just wrote. 11. Record the sender s address in the space below: 12. Enter q to quit. Part II - Change the sender_canonical Table and Write the Again 1. Enter rcpostfix stop. 2. Open the file /etc/postfix/sender_canonical with your favorite text editor. 3. To change the sender address of user jgoldman, enter (on one line) jgoldman@daxx.digitalairlines.com webmaster@digitalai rlines.com 4. Save the file and close the editor. 5. Enter postmap hash:/etc/postfix/sender_canonical. 6. Start Postfix by entering rcpostfix start Part III - Test the Configuration 1. Log in as user jgoldman by entering su - jgoldman 2. To write an to user root, enter mail root@localhost 3. Enter a subject and some text; then finish the Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-9

10 SUSE Linux Enterprise Server 10: Networking Services / Workbook a. Press Enter. b. Type. (dot). c. Press Enter. 4. To get root permissions, enter exit. 5. Enter mail. 6. Enter the number corresponding to the you just wrote. 7. Record the sender s address in the space below: 8. Enter q to quit. (End of Exercise) WB 3-10 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

11 Exercise 3-5 Configure Cyrus IMAPd In this exercise,you install and set up CyrusIMAPd. In part II, you set the password for the Cyrus administrator to novell and create a mailbox for user geeko. In part III, is described how to configure the mail client mutt to access IMAP mailboxes. In part IV, you create a new user sales that is only allowed to change its password. You create a IMAP mailbox for the new user and allow user geeko to read mails in this mailbox. Test your configuration using mutt. Do the following: Part I - Install Cyrus IMAPd Part II - Create a Mailbox for User geeko Part III - Configure the Mail Client mutt Part IV - Write a Mail from root to geeko to Test IMAP Part V - Create a New Mailbox with Read Permission for geeko Part I - Install Cyrus IMAPd 1. From the main menu, start YaST. 2. Enter the root password (novell) and select OK. 3. From the YaST Control Center, select Software > Software Management 4. From the filter drop-down menu, select Search. 5. In the Search field, enter cyrus-imapd; then select Search. 6. On the right, select the cyrus-imapd package. 7. Select Accept; then insert the SUSE Linux Enterprise Server 10 DVD. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-11

12 SUSE Linux Enterprise Server 10: Networking Services / Workbook 8. When installation is complete, remove the DVD and close the YaST Control Center. Part II - Create a Mailbox for User geeko 1. Open the file /etc/postfix/transport with your favorite text editor, go to the end of the file, and enter the line root@ local: digitalairlines.com cyrus: 2. Save the file and close the editor. 3. Enter postmap hash:/etc/postfix/transport 4. Restart Postfix with rcpostfix restart 5. To start the Cyrus IMAPd, enter rccyrus start 6. To test your Cyrus installation, enter telnet localhost imap 7. If the IMAPd answers, enter the following to terminate the connection.. logout 8. To set a password for user cyrus, enter passwd cyrus 9. Enter novell as the new password twice. Ignore the warning messages. 10. To start the SASL authentication daemon, enter rcsaslauthd start 11. To start the administration of the cyrus daemon, enter cyradm -user cyrus -auth login localhost 12. Enter novell as the password of the user cyrus. 13. To create a new mailboxfor user geeko, enter creat box user.geeko WB 3-12 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

13 14. To exit the cyradm tool, enter exit. Part III - Configure the Mail Client mutt 1. The only available mail client on SUSE Linux Enterprise Server 10 is mutt. It is installed during a standard installation. Enter su - geeko and password novell. 2. A template configuration file for mutt is available in each user s home directroy. Open the file ~/.muttrc by entering vi ~/.muttrc in a terminal window. 3. Add the following lines to the configuration file: set spoolfile={localhost}user.geeko set folder={localhost}user. set imap_user=geeko set imap_pass=novell Alternatively you can copy the file exercises/section_4/.muttrc from the Course CD. 4. Save the file and exit vi by entering :wq. 5. Start mutt by entering mutt. 6. mutt starts. In the status bar at the bottom you can see that the IMAP folder //localhost/user.geeko is open. To get a list of the available IMAP folders, press C and then?. An error message stating No such folder should appear in the bottom line. 7. To quit mutt, press Q twice. 8. Enter exit. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-13

14 SUSE Linux Enterprise Server 10: Networking Services / Workbook Part IV - Write a Mail from root to geeko to Test IMAP 1. As user root write a mail to user geeko by entering mail geeko@digitalairlines.com. 2. Enter the subject and some text and finish the mail by doing the following: a. Press Enter. b. Type. (dot). c. Press Enter. 3. Switch to user geeko by entering su - geeko 4. Start mutt by entering mutt. 5. mutt starts. You should see the mail of user root. To read this mail press Enter. 6. To quit mutt, press Q twice. 7. When prompted to move the read mail to the file mbox press Enter for no. 8. Enter exit. Part V - Create a New Mailbox with Read Permission for geeko 1. To create a Linux account for the user sales, enter useradd -s /usr/bin/passwd sales 2. To start the administration of the cyrus daemon, enter cyradm -user cyrus -auth login localhost 3. Enter novell as the password of the user cyrus. 4. To create a new mailbox for user sales, enter creat box user.sales 5. To see the ACLs for the new mailbox, enter listaclmailbox user.sales sales lrswipcda WB 3-14 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

15 6. To give the user geeko read permission to the sales mailbox, enter setaclmailbox user.sales geeko read 7. To see the ACLs for the sales mailbox again, enter listaclmailbox user.sales The output should look like this geeko lrs sales lrswipcda 8. To exit the cyradm tool, enter exit. 9. Change to user geeko by entering su - geeko. 10. Start mutt by entering mutt. 11. mutt starts. In the status bar at the bottom you can see that the IMAP folder //localhost/user.geeko is open. To get a list of the available IMAP folders, press C and then?. A list appears showing the new mail box sales. 12. Select the mailbox sales using the cursor keys and press Enter. The content of the sales mailbox is shown. The mailbox is empty. 13. To quit mutt, press Q. 14. Enter exit. (End of Exercise) Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-15

16 SUSE Linux Enterprise Server 10: Networking Services / Workbook Exercise 3-6 Configure QPopper In this exercise, you install and activate QPopper. Part V describes how to configure the mail client mutt to access POP mailboxes. Do the following: Part I - Configure Postfix Part II - Write an to User geeko Part III - Install QPopper Part IV - Configure xinetd Part V - Configure the Mail Client mutt Part I - Configure Postfix 1. As root, stop the Cyrus daemon by entering rccyrus stop. 2. Open the file /etc/postfix/transport with your favorite text editor and remove the following line added during the last exercise: digitalairlines.com cyrus: 3. Save the file and close the editor. 4. Enter postmap hash:/etc/postfix/transport. 5. Restart Postfix with rcpostfix restart. Part II - Write an to User geeko 1. To write an message as user root for user geeko, enter mail geeko@localhost 2. Enter a subject and some text; then finish the a. Press Enter. b. Type. (dot). c. Press Enter. WB 3-16 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

17 Part III - Install QPopper 1. From the main menu, start YaST. 2. Enter the root password (novell) and select OK. 3. From the YaST Control Center, select Software > Software Management 4. From the filter drop-down menu, select Search. 5. In the Search field, enter qpopper; then select Search. 6. On the right, select the qpopper package. 7. Select Accept; then insert the SUSE Linux Enterprise Server 10 DVD. 8. When installation is complete, remove the DVD and close the YaST Control Center. Part IV - Configure xinetd 1. Open the file /etc/xinetd.d/qpopper with a text editor and add a hash-sign ( # ) at the beginning of the disable line. 2. Save the file and close your editor. 3. Start the xinetd by entering rcxinetd start Part V - Configure the Mail Client mutt 1. The only available mail client on SUSE Linux Enterprise Server 10 is mutt. To change the mutt configuration, enter su - geeko. 2. Open the configuration file by entering vi ~/.muttrc. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-17

18 SUSE Linux Enterprise Server 10: Networking Services / Workbook 3. Remove the following lines from the configuration file: set spoolfile={localhost}user.geeko set folder={localhost}user. set imap_user=geeko set imap_pass=novell If you copied the file exercises/section_4/.muttrc in the Cyrus exercise, you have to add a hash sign ( # ) at the beginning of these lines. 4. Add the following lines: set spoolfile=~/mail/inbox set folder=~/mail set pop_host=localhost set pop_user=geeko set pop_pass=novell set pop_authenticators=user If you copied the file exercises/section_4/.muttrc in the Cyrus exercise, you have to remove the hash sign ( # ) at the beginning of these lines. 5. Save the file and exit vi by entering :wq. 6. Create a mail directory by entering mkdir ~/Mail 7. Create the inbox mail file by entering touch ~/Mail/Inbox 8. Start mutt by entering mutt. 9. mutt starts. In the status bar at the bottom you can see that the content of the inbox folder is shown. 10. Press Shift+G to fetch the new from the POP3 server. If you are prompted to remove the from the server, press Enter for no. The mail you wrote in Part II of this exercise should be fetched. 11. To quit mutt, press Q. WB 3-18 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

19 12. Enter exit. (End of Exercise) Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-19

20 SUSE Linux Enterprise Server 10: Networking Services / Workbook Exercise 3-7 Configure Procmail In this exercise, you configure Procmail. You create two mailboxes for user jgoldman in his home directory. Mails from user geeko should be stored in the training mailbox. All other mails should be stored in the Inbox mail directory. Do the following: Part I - Configure Postfix Part II - Create Mailboxes in the Home Directory of User jgoldman Part III - Create the procmail Configuration File Part IV - Test the Configuration Part I - Configure Postfix 1. In the file /etc/postfix/main.cf, change the option mailbox_command in the following way: mailbox_command = /usr/bin/procmail 2. Restart Postfix by entering rcpostfix restart Part II - Create Mailboxes in the Home Directory of User jgoldman 1. Make sure that the jgoldman user account is available. Otherwise, create a new account by entering useradd -m jgoldman 2. From the terminal emulation where you are logged in as user root, switch to user jgoldman by entering su - jgoldman 3. Create a Mail directory by entering mkdir Mail WB 3-20 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

21 4. Create two mailboxes by entering touch Mail/Inbox Mail/Training Part III - Create the procmail Configuration File 1. Start your favorite text editor and create a new file ~/.procmailrc. 2. Enter PATH=/bin:/usr/bin MAILDIR=$HOME/Mail LOGFILE=$MAILDIR/mail.log 3. To configure that all messages from user geeko arrive in the Training mailbox, enter :0 * ^From.*geeko $MAILDIR/Training 4. To let all other arrive in the Inbox mailbox, append: :0 * $MAILDIR/Inbox 5. Save the file and close the editor. Part IV - Test the Configuration 1. In a terminal window, enter su - geeko and the password novell to switch to the user geeko. 2. Send an to jgoldman by entering mail jgoldman. 3. Enter the subject and some text; finish the mail by doing the following: a. Press Enter. b. Type. (dot). c. Press Enter. 4. Switch back to the user jgoldman by entering exit. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-21

22 SUSE Linux Enterprise Server 10: Networking Services / Workbook 5. Using cat Mail/Training, you should see the you just wrote as geeko. 6. Switch back to user root by entering exit. 7. As root, send an to jgoldman by entering mail jgoldman. 8. Enter the subject and some text; finish the mail by doing the following: a. Press Enter. b. Type. (dot). c. Press Enter. 9. Switch to user jgoldman by entering su - jgoldman 10. Using cat Mail/Inbox you should see the mail you just wrote as root. 11. Switch back to user root by entering exit. (End of Exercise) WB 3-22 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

23 Exercise 3-8 Manage Spam with SpamAssassin In this exercise, you install and configure SpamAssassin to manage spam. You use a sample spam mail from the Course DVD to test your configuration. Complete the following: Part I - Install SpamAssassin Part II - Test SpamAssassin Part III - Configure Postfix Part IV - Configure Procmail Part V - Test SpamAssassin Configuration Part I - Install SpamAssassin 1. Start YaST from the main menu. 2. Enter the root password (novell) and select OK. 3. From the YaST Control Center, select Software > Software Management 4. From the filter drop-down menu, select Search. 5. In the Search field, enter spamassassin; then select Search. 6. On the right, select the spamassassin package. 7. Select Accept; then insert the SUSE Linux Enterprise Server 10 DVD. 8. When installation is complete, remove the DVD and close the YaST Control Center. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-23

24 SUSE Linux Enterprise Server 10: Networking Services / Workbook Part II - Test SpamAssassin 1. Copy the file sample-spam.txt from the Course DVD into your home directory. 2. Pipe the copied message into SpamAssassin by entering cat sample-spam.txt spamassassin 3. When the output appears, look for the lines beginning with X-Spam. Alternatively you can pipe the output from the previous command into grep: cat sample-spam.txt spamassassin grep X-Spam Part III - Configure Postfix 1. Open the file /etc/postfix/master.cf by entering vi /etc/postfix/master.cf 2. Make sure the smtpd definition looks like the following smtp inet n - n - - smtpd 3. Save the file and exit by entering :wq. 4. Open the file /etc/postfix/master.cf by entering vi /etc/postfix/main.cf 5. Make sure that Procmail is used to deliver . mailbox_command = /usr/bin/procmail 6. Save the file and exit by entering :wq. 7. Restart Postfix by entering rcpostfix restart Part IV - Configure Procmail 1. Create a new file /etc/procmailrc by entering vi /etc/procmailrc WB 3-24 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

25 2. Enter the following content: LOGFILE=/tmp/procmail.log VERBOSE=yes :0 hbfw /usr/bin/spamc 3. Save the file and exit by entering :wq. Part V - Test SpamAssassin Configuration 1. Start the spamd by entering rcspamd start 2. Copy the files in /media/cdrom/section_4/ from the Course DVD into your home directory. 3. Send an to user geeko by entering (in one line) cat sample-nonspam.txt /usr/sbin/sendmail geeko@digitalairlines.com 4. Switch to user geeko by entering su - geeko 5. Enter mail. 6. Enter the number of the of jgoldman and look for the SpamAssassin header entries. 7. Quit mail by entering q. 8. Switch back to the user root by entering exit. 9. Send an spam to user geeko by entering (in one line) cat sample-spam.txt /usr/sbin/sendmail geeko@digitalairlines.com 10. Switch to user geeko by entering su - geeko 11. Enter mail. 12. Enter the number of the of jgoldman and look for the SpamAssassin header entries. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-25

26 SUSE Linux Enterprise Server 10: Networking Services / Workbook 13. Quit mail by entering q. 14. Switch back to the user root by entering exit. (End of Exercise) WB 3-26 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

27 Exercise 3-9 Use AVMailGate as a Virus Scanner for In this exercise, you install and configure AVMailGate as a virus scanner for mails. Finally, you update the AVMailGate virus signatures. Do the following: Part I - Install AVMailGate Part II - Configure Postfix to Use AVMailGate as Content Filter Part III - Configure the Ports for AVMailGate to Use Part IV - Check Configuration Using a Virus File from CD Part V - Update Your Virus Signatures Part I - Install AVMailGate 1. From the main menu, start YaST. 2. Enter the root password (novell) and select OK. 3. From the YaST Control Center, select Software > Software Management. 4. From the filter drop-down menu, select Search. 5. In the Search field, enter avmailgate; then select Search. 6. On the right, select the avmailgate package. 7. Select Accept; then insert the SUSE Linux Enterprise Server 10 DVD. 8. Select Continue to resolve dependencies. 9. When installation is complete, remove the DVD and close the YaST Control Center. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-27

28 SUSE Linux Enterprise Server 10: Networking Services / Workbook Part II - Configure Postfix to Use AVMailGate as Content Filter 1. Open the file /etc/postfix/master.cf in a text editor. 2. Uncomment the following line (on one line): localhost:10025 inet n - n - - smtpd -o content_filter= 3. Add the following line in /etc/postfix/main.cf: content_filter = smtp: : Save the file. 5. Enter postfix reload. Part III - Configure the Ports for AVMailGate to Use 1. To ensure that AVMailGate listens on port and not on port 25, edit /etc/avmailgate.conf: ListenAddress port To ensure that AvMailGate sends mails back to Postfix via SMTP on host localhost via port 10025, edit /etc/avmailgate.conf: ForwardTo SMTP: localhost port Because AvMailGate sends out notification messages as AvMailGate, set an alias in /etc/aliases: avmailgate: root 4. Enter newaliases. 5. Enter rcavgate start. Part IV - Check Configuration Using a Virus File from CD 1. Log in as user geeko. 2. Send an infected mail to user root by entering mail root -s Virus Test -a /media/cdrecorder/section_4/sample-virus-executable.txt WB 3-28 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

29 3. Enter some text for the message This is an infected mail.. 4. Log in as user root. 5. Check whether the mail queue is empty by entering mailq 6. Check whether the infected mail arrived by entering mail 7. Check whether the infected mail was detected by entering ls /var/spool/avmailgate/rejected Part V - Update Your Virus Signatures 1. To check for a new version of the virus signatures, enter /usr/lib/antivir/antivir --update --check 2. To download the virus signatures, enter /usr/lib/antivir/antivir --update (End of Exercise) Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-29

30 SUSE Linux Enterprise Server 10: Networking Services / Workbook Exercise 3-10 Use AMaViSd as Virus Scanner for In this exercise, you install and configure AMaViSd. Virus notifications should be sent to user root. You test your configuration by using telnet and by sending a test virus file by mail. Do the following: Part I - Install AMaViSd Part II - Change /etc/sysconfig/amavis Part III - Change /etc/amavisd.conf Part IV - Test the Configuration Part I - Install AMaViSd 1. From the main menu, start YaST. 2. Enter the root password (novell) and select OK. 3. From the YaST Control Center, select Software > Software Management. 4. From the filter drop-down menu, select Search. 5. In the Search field, enter amavis; then select Search. 6. On the right, select the amavisd-new package. 7. Select Accept; then insert the SUSE Linux Enterprise Server 10 DVD. 8. Select Continue to resolve dependencies. 9. When installation is complete, remove the DVD and close the YaST Control Center. WB 3-30 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

31 Part II - Change /etc/sysconfig/amavis 1. Open the file /etc/sysconfig/amavis by entering vi /etc/sysconfig/amavis 2. Change the line with the variable USE_AMAVIS to USE_AMAVIS= yes 3. Exit vi by entering :wq. 4. Enter SuSEconfig. 5. Look at the messages of the output. If the file /etc/postfix/master.cf is left untouched, overwrite this file by entering mv /etc/postfix/master.cf.suseconfig /etc/postfix/master.cf 6. Open the file /etc/postfix/master.cf by entering vi /etc/postfix/master.cf 7. Add the following lines to the file /etc/postfix/master.cf: smtp-amavis unix - - n - 2 smtp -o smtp_data_done_timeout=1200 -o smtp_send_xforward_command=yes -o disable_dns_lookups=yes -o max_use=20 8. Exit vi by entering :wq. 9. Open the file /etc/postfix/main.cf by entering vi /etc/postfix/main.cf 10. To remove Procmail from the mailbox_command (entered in a previous exercise), enter: mailbox_command = 11. Add the following line to /etc/postfix/main.cf: content_filter = smtp-amavis:[ ]: Exit vi by entering :wq. 13. Restart Postfix by entering rcpostfix reload. Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-31

32 SUSE Linux Enterprise Server 10: Networking Services / Workbook Part III - Change /etc/amavisd.conf 1. Open the file /etc/amavis.conf by entering vi /etc/amavis.conf 2. Modify the $mydomain variable to $mydomain = 'digitalairlines.com'; 3. Change the mail address where virus notifications should be sent to root: $virus_admin = "root\@$mydomain"; 4. Exit vi by entering :wq. 5. Start the AMaViSd by entering rcamavis start. Part IV - Test the Configuration 1. Check whether Postfix listens on port by entering telnet Enter quit. 3. Check whether the AMaViSd listens on port by entering telnet Enter mail from: jgoldman@digitalairlines.com 5. Enter rcpt to: geeko@digitalairlines.com 6. Enter data 7. Open the file /usr/share/doc/packages/amavisd-new/test-messages/ sample-virus-simple.txt and copy the last line into the clipboard. The line looks like this: X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD- ANTIVIRUS-TEST-FILE!$H+H* 8. Paste the content of the clipboard into the first terminal and do the following: a. Press Enter. b. Type. (dot). WB 3-32 Copying all or part of this manual, or distributing such copies, is strictly prohibited. Version 1

33 c. Press Enter. 9. You should get a virus warning like the following one: Ok, discarded, id= VIRUS: Eicar-Test-Signature 10. Enter quit. Part V - Send a Virus 1. Log in as user jgoldman by entering su - jgoldman. 2. Send a virus mail to user tux by entering mail geeko@digitalairlines.com < /usr/share/doc/packages/amavisd-new/test-messages/sample -virus-simple.txt 3. Log out by entering exit. 4. As root, enter mail to look for new . There should be an from virusalert in your mail folder. (End of Exercise) Version 1 Copying all or part of this manual, or distributing such copies, is strictly prohibited. WB 3-33

Implementing a SPAM and virus scanning mail server using RedHat Linux 8.0

Implementing a SPAM and virus scanning mail server using RedHat Linux 8.0 Implementing a SPAM and virus scanning mail server using RedHat Linux 8.0 Ralf Spenneberg April 25, 2003 ralf@spenneberg.net Copyright c 2002 by Ralf Spenneberg. This document was typeset using L A TEX

More information

Implementing a SPAM and virus scanning mail server using RedHat Linux 8.0

Implementing a SPAM and virus scanning mail server using RedHat Linux 8.0 Implementing a SPAM and virus scanning mail server using RedHat Linux 8.0 Ralf Spenneberg February 20, 2003 ralf@spenneberg.net Copyright c 2002 by Ralf Spenneberg. This document was typeset using L A

More information

Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4

Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4 Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4 For this tutorial, I use CentOS 6.5 32 bit minimal installation, with SELinux disabled. My test box details are given below.

More information

Configuring MailArchiva with Insight Server

Configuring MailArchiva with Insight Server Copyright 2009 Bynari Inc., All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any

More information

Postfix. by Rod Roark http://www.sunsetsystems.com/

Postfix. by Rod Roark http://www.sunsetsystems.com/ Postfix by Rod Roark http://www.sunsetsystems.com/ Terminology MTA MDA MUA SMTP IMAP POP3 UCE Mail Transfer Agent Receives mail from or sends mail to other computers Talks with other MTAs and certain other

More information

Network Management & Monitoring Request Tracker (RT) Installation and Configuration

Network Management & Monitoring Request Tracker (RT) Installation and Configuration Network Management & Monitoring Request Tracker (RT) Installation and Configuration Notes: Commands preceded with "$" imply that you should execute the command as a general user - not as root. Commands

More information

Linux Administrator (Advance)

Linux Administrator (Advance) Linux Administrator (Advance) Mr.Kriangsak Namkot Trainer & Director Jodoi IT&Service Co.,Ltd. jodoi@jodoi.com jodoi1819@hotmail.com http://www.jodoi.com Linux Admin II Day 2 9:00 น. -12.00 น. - Mail Server

More information

Ficha técnica de curso Código: IFCAD241

Ficha técnica de curso Código: IFCAD241 Curso de: Linux E-mail. Set up, maintain, and secure a small office e- mail server Objetivos: Aprender a instalar, mantener y securizar un correo en un sistema linux. Destinado a: Todo administrador de

More information

THE DEFINITIVE GUIDE TO SETTING UP A LINUX RELAY SERVER FOR MICROSOFT EXCHANGE SERVER

THE DEFINITIVE GUIDE TO SETTING UP A LINUX RELAY SERVER FOR MICROSOFT EXCHANGE SERVER THE DEFINITIVE GUIDE TO SETTING UP A LINUX RELAY SERVER FOR MICROSOFT EXCHANGE SERVER 2000/2003 With Mandriva 2007.1 Spring, Postfix, Spamassassin, Clamav... Index INTRODUCTION...2 What you will need:...2

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

Ciphermail for BlackBerry Quick Start Guide

Ciphermail for BlackBerry Quick Start Guide CIPHERMAIL EMAIL ENCRYPTION Ciphermail for BlackBerry Quick Start Guide June 19, 2014, Rev: 8975 Copyright 2010-2014, ciphermail.com. Introduction This guide will explain how to setup and configure a Ciphermail

More information

escan SBS 2008 Installation Guide

escan SBS 2008 Installation Guide escan SBS 2008 Installation Guide Following things are required before starting the installation 1. On SBS 2008 server make sure you deinstall One Care before proceeding with installation of escan. 2.

More information

Monitoring a Linux Mail Server

Monitoring a Linux Mail Server Monitoring a Linux Mail Server Mike Weber mweber@spidertools.com] Various Methods to Monitor Mail Server Public Ports SMTP on Port 25 POPS on Port 995 IMAPS on Port 993 SNMP Amavis on Port 10024 Reinjection

More information

BOTTOM UP THINKING EMAIL SETUP INSTRUCTIONS. Unique businesses require unique solutions CLIENT GUIDE

BOTTOM UP THINKING EMAIL SETUP INSTRUCTIONS. Unique businesses require unique solutions CLIENT GUIDE BOTTOM UP THINKING Unique businesses require unique solutions EMAIL SETUP INSTRUCTIONS CLIENT GUIDE INDEX How to connect a. Deciding on best method (POP or IMAP) Setting up email on devices Webmail a.

More information

CHARTER BUSINESS custom hosting faqs 2010 INTERNET. Q. How do I access my email? Q. How do I change or reset a password for an email account?

CHARTER BUSINESS custom hosting faqs 2010 INTERNET. Q. How do I access my email? Q. How do I change or reset a password for an email account? Contents Page Q. How do I access my email? Q. How do I change or reset a password for an email account? Q. How do I forward or redirect my messages to a different email address? Q. How do I set up an auto-reply

More information

Collax Mail Server. Howto. This howto describes the setup of a Collax server as mail server.

Collax Mail Server. Howto. This howto describes the setup of a Collax server as mail server. Collax Mail Server Howto This howto describes the setup of a Collax server as mail server. Requirements Collax Business Server Collax Groupware Suite Collax Platform Server including Collax Communication

More information

GUIDEWIRE. Introduction to Using WebMail. macrobatix. Learn how to: august 2008

GUIDEWIRE. Introduction to Using WebMail. macrobatix. Learn how to: august 2008 macrobatix GUIDEWIRE august 2008 Introduction to Using WebMail Learn how to: Manage Your Inbox Compose a Message Activate Spam Filter Modify Spam Settings Check Held Messages *To download the complete

More information

1 Accessing E-mail accounts on the Axxess Mail Server

1 Accessing E-mail accounts on the Axxess Mail Server 1 Accessing E-mail accounts on the Axxess Mail Server The Axxess Mail Server provides users with access to their e-mail folders through POP3, and IMAP protocols, or OpenWebMail browser interface. The server

More information

Parallels Panel. Parallels Small Business Panel 10.2: User's Guide. Revision 1.0

Parallels Panel. Parallels Small Business Panel 10.2: User's Guide. Revision 1.0 Parallels Panel Parallels Small Business Panel 10.2: User's Guide Revision 1.0 Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax:

More information

debops.postfix documentation

debops.postfix documentation debops.postfix documentation Release master DebOps Project February 18, 2015 Contents 1 Introduction 1 1.1 Features.................................................. 1 2 Installation 3 2.1 Role dependencies............................................

More information

Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia for Business Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E50 Legal Notice Copyright Nokia 2006. All rights reserved. Reproduction, transfer, distribution

More information

AXIGEN Mail Server. Quick Installation and Configuration Guide. Product version: 6.1 Document version: 1.0

AXIGEN Mail Server. Quick Installation and Configuration Guide. Product version: 6.1 Document version: 1.0 AXIGEN Mail Server Quick Installation and Configuration Guide Product version: 6.1 Document version: 1.0 Last Updated on: May 28, 2008 Chapter 1: Introduction... 3 Welcome... 3 Purpose of this document...

More information

Adding the BU IMAP Inbox 1. Along the left side of the screen, there is a Mail column. Look for the All Mail Folders section.

Adding the BU IMAP Inbox 1. Along the left side of the screen, there is a Mail column. Look for the All Mail Folders section. Basic Guide to Setting up Outlook 2003 for E-Mail Some preliminary setup has already been done, so when you first open Outlook 2003 it will prompt you for your password. You can go ahead and log on at

More information

Web Mail Classic Web Mail

Web Mail Classic Web Mail April 14 Web Mail Classic Web Mail Version 2.2 Table of Contents 1 Technical Requirements... 4 2 Accessing your Web Mail... 4 3 Web Mail Features... 5 3.1 Home... 5 3.1.1 Mailbox Summary... 5 3.1.2 Announcements...

More information

GWAVA 5. Migration Guide for Netware GWAVA 4 to Linux GWAVA 5

GWAVA 5. Migration Guide for Netware GWAVA 4 to Linux GWAVA 5 GWAVA 5 Migration Guide for Netware GWAVA 4 to Linux GWAVA 5 Copyright 2010 GWAVA, Inc. All rights reserved. Content may not be reproduced without permission. http://www.gwava.com Overview While GWAVA

More information

Parallels Plesk Control Panel

Parallels Plesk Control Panel Parallels Plesk Control Panel Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2008, Parallels,

More information

Grapevine Mail User Guide

Grapevine Mail User Guide Grapevine Mail User Guide Table of Contents Accessing Grapevine Mail...2 How to access the Mail portal... 2 How to login... 2 Grapevine Mail user guide... 5 Copying your contacts to the new Grapevine Mail

More information

Postfix Configuration and Administration

Postfix Configuration and Administration c 2007 Patrick Koetter & Ralf Hildebrandt state-of-mind LISA 07 Dallas, November 2007 System architecture System metaphor SMTP UUCP QMQP sendmail Postfix SMTP LMTP local pipe virtual transport aliases

More information

Spam fighting with Postfix

Spam fighting with Postfix Spam fighting with Postfix Using technology to fight a social problem Devdas Bhagat Postfix Antispam workshop: Apricot 2004 p. 1 Introduction Postfix in the anti spam war "If you think technology can solve

More information

Workflow Configuration on R12/R11. High Level Steps. SENDMAIL configuration mostly done by System Administrator Workflow configuration for R12

Workflow Configuration on R12/R11. High Level Steps. SENDMAIL configuration mostly done by System Administrator Workflow configuration for R12 Workflow Configuration on R12/R11 High Level Steps SENDMAIL configuration mostly done by System Administrator Workflow configuration for R12 SENDMAIL Configuration tested on RedHat 4 update 5 -------------------------------------------------------------------

More information

Email Client configuration and migration Guide Setting up Thunderbird 3.1

Email Client configuration and migration Guide Setting up Thunderbird 3.1 Email Client configuration and migration Guide Setting up Thunderbird 3.1 1. Open Mozilla Thunderbird. : 1. On the Edit menu, click Account Settings. 2. On the Account Settings page, under Account Actions,

More information

Plesk for Windows Copyright Notice

Plesk for Windows Copyright Notice 2 Plesk for Windows Copyright Notice ISBN: N/A SWsoft. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Phone: +1 (703) 815 5670 Fax: +1 (703) 815 5675 Copyright 1999-2007, SWsoft Holdings, Ltd.

More information

CipherMail Gateway Quick Setup Guide

CipherMail Gateway Quick Setup Guide CIPHERMAIL EMAIL ENCRYPTION CipherMail Gateway Quick Setup Guide October 10, 2015, Rev: 9537 Copyright 2015, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Typical setups 4 2.1 Direct delivery............................

More information

I N S T A L L A T I O N M A N U A L

I N S T A L L A T I O N M A N U A L I N S T A L L A T I O N M A N U A L 2015 Fastnet SA, St-Sulpice, Switzerland. All rights reserved. Reproduction in whole or in part in any form of this manual without written permission of Fastnet SA is

More information

Parallels Plesk Panel

Parallels Plesk Panel Parallels Plesk Panel Copyright Notice ISBN: N/A Parallels 660 SW 39th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2010, Parallels, Inc.

More information

Patented hosting technology protected by U.S.Patents 7,0909,948; 7,076,633. Patents pending in the U.S.

Patented hosting technology protected by U.S.Patents 7,0909,948; 7,076,633. Patents pending in the U.S. Copyright Notice ISBN: N/A SWsoft. 13755 Sunrise Valley Drive Suite 600 Herndon VA 20171 USA Phone: +1 (703) 815 5670 Fax: +1 (703) 815 5675 Copyright 1999-2007, SWsoft Holdings, Ltd. All rights reserved

More information

Set up Outlook for your new student e mail with IMAP/POP3 settings

Set up Outlook for your new student e mail with IMAP/POP3 settings Set up Outlook for your new student e mail with IMAP/POP3 settings 1. Open Outlook. The Account Settings dialog box will open the first time you open Outlook. If the Account Settings dialog box doesn't

More information

Anti-Spam Configuration in Outlook 2003 INDEX. Webmail settings Page 2. Client settings Page 6. Creation date 12.12.06 Version 1.2

Anti-Spam Configuration in Outlook 2003 INDEX. Webmail settings Page 2. Client settings Page 6. Creation date 12.12.06 Version 1.2 Anti-Spam Configuration in Outlook 2003 INDEX Webmail settings Page 2 Client settings Page 6 Creation date 12.12.06 Version 1.2 Webmail settings In this section, you will learn how to activate and configure

More information

9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation 9236245 Issue 2EN Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia 9300 Configuring connection settings Legal Notice Copyright Nokia 2005. All rights reserved. Reproduction,

More information

PLESK 7 NEW FEATURES HOW-TO RESOURCES

PLESK 7 NEW FEATURES HOW-TO RESOURCES PLESK 7 NEW FEATURES HOW-TO RESOURCES Copyright (C) 1999-2004 SWsoft, Inc. All rights reserved. Distribution of this work or derivative of this work in any form is prohibited unless prior written permission

More information

Avira Update Manager User Manual

Avira Update Manager User Manual Avira Update Manager User Manual Table of contents Table of contents 1. Product information........................................... 4 1.1 Functionality................................................................

More information

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3.

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3. Thunderbird The changes that need to be made in the email programs will be the following: Incoming mail server: newmail.one-eleven.net Outgoing mail server (SMTP): newmail.one-eleven.net You will also

More information

Initial Setup of Mozilla Thunderbird with IMAP for OS X Lion

Initial Setup of Mozilla Thunderbird with IMAP for OS X Lion Initial Setup of Mozilla Thunderbird Concept This document describes the procedures for setting up the Mozilla Thunderbird email client to download messages from Google Mail using Internet Message Access

More information

User guide Business Internet e-mail features

User guide Business Internet e-mail features User guide Business Internet e-mail features Page 1 de 1 Table of content Page Introduction 3 1. How do I access my web based e-mail? 3 2. How do I access/alter these enhancements? 3 A. Basic Features

More information

EMB. E-Mail Basics. Goals of this lab: Prerequisites: LXB, NET, DNS

EMB. E-Mail Basics. Goals of this lab: Prerequisites: LXB, NET, DNS EMB E-Mail Basics Goals of this lab: Learn how e-mail works under the hood Learn about spam filtering and virus scanning Gain experience setting up a full-fledged e-mail service Prerequisites: LXB, NET,

More information

SIOS Protection Suite for Linux v8.3.0. Postfix Recovery Kit Administration Guide

SIOS Protection Suite for Linux v8.3.0. Postfix Recovery Kit Administration Guide SIOS Protection Suite for Linux v8.3.0 Postfix Recovery Kit Administration Guide July 2014 This document and the information herein is the property of SIOS Technology Corp. (previously known as SteelEye

More information

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.

More information

Cloud. Hosted Exchange Administration Manual

Cloud. Hosted Exchange Administration Manual Cloud Hosted Exchange Administration Manual Table of Contents Table of Contents... 1 Table of Figures... 4 1 Preface... 6 2 Telesystem Hosted Exchange Administrative Portal... 7 3 Hosted Exchange Service...

More information

POP3 Connector for Exchange - Configuration

POP3 Connector for Exchange - Configuration Eclarsys PopGrabber POP3 Connector for Exchange - Configuration PopGrabber is an excellent replacement for the POP3 connector included in Windows SBS 2000 and 2003. It also works, of course, with Exchange

More information

Email Filtering Admin Guide. Guide to Administrative Functions of Spam and Virus Filtering Service

Email Filtering Admin Guide. Guide to Administrative Functions of Spam and Virus Filtering Service Email Filtering Admin Guide Guide to Administrative Functions of Spam and Virus Filtering Service Table of Contents Welcome Page 3 Logon Page 3 Home Page 4 Spam Page 5 Message Searching Releasing Held

More information

Simple Scan to Email Setup Guide

Simple Scan to Email Setup Guide Simple Scan to Email Setup Guide Document Centre 555/545/535 Dc04cc0336 Scan to Email Scanning to email from a Xerox DC 555/545/535 requires the support of external email services on a network. These services

More information

Mozilla Mail. Created by Holly Robertson and Quinn Stewart Spring 2004 IT Lab, School of Information University of Texas at Austin

Mozilla Mail. Created by Holly Robertson and Quinn Stewart Spring 2004 IT Lab, School of Information University of Texas at Austin Mozilla Mail Created by Holly Robertson and Quinn Stewart Spring 2004 IT Lab, School of Information University of Texas at Austin Mozilla is an open source suite of applications used for web browsing,

More information

Configuring, Customizing, and Troubleshooting Outlook Express

Configuring, Customizing, and Troubleshooting Outlook Express 3 Configuring, Customizing, and Troubleshooting Outlook Express............................................... Terms you ll need to understand: Outlook Express Newsgroups Address book Email Preview pane

More information

ESET Mail Security & Zarafa 7 infrastructure Integration

ESET Mail Security & Zarafa 7 infrastructure Integration ESET Mail Security & Zarafa 7 infrastructure Integration Whitepaper 20-2-2012 -- version 2.0 Donny Maasland donny@nod32.nl Verified 10-2-2012 Remon van Gijn, Zarafa QA r.vangijn@zarafa.com ESET Mail Security

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Mulberry IMAP Internet Mail Client Versions 3.0 & 3.1 Cyrusoft International, Inc. Suite 780 The Design Center 5001 Baum Blvd. Pittsburgh PA 15213 USA Tel: +1 412 605 0499 Fax: +1

More information

Configuring File Servers and Active Directory with Domain Services for Windows-Lab

Configuring File Servers and Active Directory with Domain Services for Windows-Lab Configuring File Servers and Active Directory with Domain Services for Windows-Lab OES11 Novell Training Services ATT LIVE 2012 LAS VEGAS www.novell.com Legal Notices Novell, Inc., makes no representations

More information

Exim4U. Email Server Solution For Unix And Linux Systems

Exim4U. Email Server Solution For Unix And Linux Systems Email Server Solution For Unix And Linux Systems General Overview, Feature Comparison and Screen Shots Exim4U Email Server Solution For Unix And Linux Systems Version 2.x.x October 12, 2012 Copyright 2009

More information

Parallels Plesk Panel

Parallels Plesk Panel Parallels Plesk Panel Copyright Notice ISBN: N/A Parallels 660 SW 39th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2009, Parallels, Inc.

More information

128 CERT Exercises Toolset Document for students

128 CERT Exercises Toolset Document for students 128 CERT Exercises Toolset 14. Exercise: Proactive incident detection 14.1 What will you learn? In this exercise you will learn how to set up and work with AbuseHelper. AbuseHelper is an open source software

More information

IceWarp Outlook Connector 4 User Guide

IceWarp Outlook Connector 4 User Guide IceWarp Unified Communications IceWarp Outlook Connector 4 User Guide Version 10.3 Printed on 23 February, 2011 Contents IceWarp Outlook Connector 4 1 Installing IceWarp Connector... 2 Pre-Installation

More information

Outlook Web App. in Office 365. The Outlook Window. Signing In. (Outlook Exchange Faculty & Staff) Getting Started

Outlook Web App. in Office 365. The Outlook Window. Signing In. (Outlook Exchange Faculty & Staff) Getting Started Outlook Web App in Office 365 (Outlook Exchange Faculty & Staff) Getting Started The Outlook Window Navigation Bar Settings Navigation Pane View Pane Reading Pane Navigation Bar switch between Outlook,

More information

Microsoft Outlook Setup With Exchange Server. Outlook 2007 2010 2013

Microsoft Outlook Setup With Exchange Server. Outlook 2007 2010 2013 Microsoft Outlook Setup With Exchange Server Outlook 2007 2010 2013 Revised 12/1/2014 CONTENTS SUMMARY... 3 I. OUTLOOK SETUP... 4 II. PERSONAL FOLDERS SETUP... 7 III. RULES SETUP... 9 Rule #1: Move Inbox

More information

Avira Managed Email Security (AMES) User Guide

Avira Managed Email Security (AMES) User Guide Avira Managed Email Security (AMES) User Guide 1 Product information... 3 1.1 Functionality... 3 1.2 Licensing AMES... 3 2 Getting started with AMES... 4 2.1 Adding a new domain to AMES... 4 2.2 Logging

More information

Quick Scan Features Setup Guide. Scan to E-mail Setup. See also: System Administration Guide: Contains details about E-mail setup.

Quick Scan Features Setup Guide. Scan to E-mail Setup. See also: System Administration Guide: Contains details about E-mail setup. Quick Scan Features Setup Guide XE3024EN0-2 This guide includes instructions for: Scan to E-mail Setup on page 1 Scan to Mailbox Setup on page 6 Network Scanning Setup on page 9 Scan to PC Setup on page

More information

Email Instructions. Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry

Email Instructions. Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry Email Instructions Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry ii Table of Contents Table of Contents 1 Mail Account Settings 1 Account Set

More information

White Paper. Installation and Configuration of Fabasoft Folio IMAP Service. Fabasoft Folio 2015 Update Rollup 3

White Paper. Installation and Configuration of Fabasoft Folio IMAP Service. Fabasoft Folio 2015 Update Rollup 3 White Paper Fabasoft Folio 2015 Update Rollup 3 Copyright Fabasoft R&D GmbH, Linz, Austria, 2016. All rights reserved. All hardware and software names used are registered trade names and/or registered

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide September, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Exchange 2010 Outlook Profile Configuration... 1 Outlook Profile

More information

Web Hosting Getting Started Guide

Web Hosting Getting Started Guide Web Hosting Getting Started Guide This guide describes: - Hosting Terms and Definitions - How to sync a domain with your hosting account - How to change your domain s nameservers - How to use FTP to upload

More information

Math SMTP Server Configuration

Math SMTP Server Configuration Math SMTP Server Configuration Šarūnas Burdulis Version 1, August 3, 2005 Contents 1 Requirements for SMTP Service at Math 1 2 Exim 4 1 3 Spam Filtering 2 4 Virus Detection 3 5 Authentication and TLS 4

More information

Plesk 7.6 For Windows E-mail User Guide

Plesk 7.6 For Windows E-mail User Guide SWsoft, Inc. Plesk 7.6 For Windows E-mail User Guide (Revision 1.0) (c) 1999-2006 ISBN: N/A SWsoft, Inc. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Phone: +1 (703) 815 5670 Fax: +1 (703)

More information

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

More information

SCOoffice Mail Connector For Microsoft Outlook. Installation Guide Outlook 2002

SCOoffice Mail Connector For Microsoft Outlook. Installation Guide Outlook 2002 SCOoffice Mail Connector For Microsoft Outlook Installation Guide Outlook 2002 Rev 1.2 14 Jan 2003 SCOoffice Mail Connector for Microsoft Outlook Installation Guide - Outlook XP Introduction This document

More information

HOW WILL I KNOW THAT I SHOULD USE THE IAS EMAIL CONTINUITY SERVICE? https://web.ias.edu/updateme/

HOW WILL I KNOW THAT I SHOULD USE THE IAS EMAIL CONTINUITY SERVICE? https://web.ias.edu/updateme/ WHEN DO I NEED TO ACCESS THE IAS EMAIL CONTINUITY SERVICE? This service is provided to address the following actions during periods where the IAS email servers are offline: 1. If you need to check for

More information

Ans.: Spam Monitor support all popular email programs such as Outlook, Outlook Express, Netscape Mail, Mozilla Mail, Eudora or Opera

Ans.: Spam Monitor support all popular email programs such as Outlook, Outlook Express, Netscape Mail, Mozilla Mail, Eudora or Opera Faqs > Spam Monitor General Q1. What is Spam Monitor? Ans.: Spam Monitor is an easy-to-use spam filter that detects and isolates unsolicited junk mail sent to your mailbox. Designed for computer users,

More information

w e p r o t e c t d i g i t a l w o r l d s NOD32 for Linux/BSD Mail Server Installation Manual and User s documentation

w e p r o t e c t d i g i t a l w o r l d s NOD32 for Linux/BSD Mail Server Installation Manual and User s documentation w e p r o t e c t d i g i t a l w o r l d s NOD32 for Linux/BSD Mail Server Installation Manual and User s documentation Table of contents NOD32 for Linux/BSD Mail Server, First Edition Published on 6th

More information

Nokia E90 Communicator E-mail support

Nokia E90 Communicator E-mail support Nokia E90 Communicator Nokia E90 Communicator Legal Notice Nokia, Nokia Connecting People, Eseries and E90 Communicator are trademarks or registered trademarks of Nokia Corporation. Other product and company

More information

PROOFPOINT - EMAIL SPAM FILTER

PROOFPOINT - EMAIL SPAM FILTER 416 Morrill Hall of Agriculture Hall Michigan State University 517-355-3776 http://support.anr.msu.edu support@anr.msu.edu PROOFPOINT - EMAIL SPAM FILTER Contents PROOFPOINT - EMAIL SPAM FILTER... 1 INTRODUCTION...

More information

F-Secure Internet Gatekeeper

F-Secure Internet Gatekeeper F-Secure Internet Gatekeeper TOC F-Secure Internet Gatekeeper Contents Chapter 1: Welcome to F-Secure Internet Gatekeeper...5 1.1 Features...6 Chapter 2: Deployment...8 2.1 System requirements...9 2.2

More information

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault EVault for Data Protection Manager Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab...

More information

Sonian Getting Started Guide October 2008

Sonian Getting Started Guide October 2008 Sonian Getting Started Guide October 2008 Sonian, Inc. For Authorized Use Only 1 Create your new archiving account 3 Configure your firewall for IMAP collections 4 (Skip this step if you will be using

More information

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 Version 1.0 November 2008 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 1801 Varsity Drive Raleigh NC 27606-2072 USA Phone: +1 919 754

More information

GroupWise: Tips & Tricks

GroupWise: Tips & Tricks GroupWise: Tips & Tricks Objectives: Participants will: Set up a Home Page with Panels Customize the toolbar Sort email message by Sender, Subject, and Date in ascending or descending order Assign Categories

More information

Using Avaya Aura Messaging

Using Avaya Aura Messaging Using Avaya Aura Messaging Release 6.3.2 Issue 1 December 2014 Contents Chapter 1: Getting Started... 4 Messaging overview... 4 Prerequisites... 4 Accessing your mailbox from any phone... 4 Accessing the

More information

File Management Utility User Guide

File Management Utility User Guide File Management Utility User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held

More information

Web Mail Guide... Error! Bookmark not defined. 1 Introduction to Web Mail... 4. 2 Your Web Mail Home Page... 5. 3 Using the Inbox...

Web Mail Guide... Error! Bookmark not defined. 1 Introduction to Web Mail... 4. 2 Your Web Mail Home Page... 5. 3 Using the Inbox... Powered by Table of Contents Web Mail Guide... Error! Bookmark not defined. 1 Introduction to Web Mail... 4 1.1 Requirements... 4 1.2 Recommendations for using Web Mail... 4 1.3 Accessing your Web Mail...

More information

WINDOWS MAIL VISTA EMAIL ACCOUNT SETUP FOR USE WITH ELLIPSE ADVANCED SPAM FILTER

WINDOWS MAIL VISTA EMAIL ACCOUNT SETUP FOR USE WITH ELLIPSE ADVANCED SPAM FILTER *PLEASE NOTE* Specific information such as email servers, usernames, email addresses, and passwords should have already been provided to you by Ellipse. Please contact us before beginning, if you do not

More information

Barracuda Email Security Service User Guide

Barracuda Email Security Service User Guide Barracuda Email Security Service User Guide The Barracuda Email Security Service is a cloud-based email security service that protects both inbound and outbound email against the latest spam, viruses,

More information

Implementing MDaemon as an Email Security Gateway to Exchange Server

Implementing MDaemon as an Email Security Gateway to Exchange Server Implementing MDaemon as an Email Security Gateway to Exchange Server Introduction MDaemon is widely deployed as a very effective antispam/antivirus gateway to Exchange. For optimum performance, we recommend

More information

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion Initial Setup of Microsoft Outlook Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access Protocol

More information

MailEnable Connector for Microsoft Outlook

MailEnable Connector for Microsoft Outlook MailEnable Connector for Microsoft Outlook Version 2.23 This guide describes the installation and functionality of the MailEnable Connector for Microsoft Outlook. Features The MailEnable Connector for

More information

User Guide Online Backup

User Guide Online Backup User Guide Online Backup Table of contents Table of contents... 1 Introduction... 2 Adding the Online Backup Service to your Account... 2 Getting Started with the Online Backup Software... 4 Downloading

More information

Email Migration Manual (For Outlook 2010)

Email Migration Manual (For Outlook 2010) Email Migration Manual (For Outlook 2010) By SYSCOM (USA) May 13, 2013 Version 2.2 1 Contents 1. How to Change POP3/SMTP Setting for Outlook 2010... 3 2. How to Login to Webmail... 10 3. How to Change

More information

BTC STUDENT EMAIL GUIDE

BTC STUDENT EMAIL GUIDE BTC STUDENT EMAIL GUIDE All students have a BTC email account. If you are unable to access your account, please contact your instructor. Student Email Each student has an email account. Your email address

More information

System Administration and Log Management

System Administration and Log Management CHAPTER 6 System Overview System Administration and Log Management Users must have sufficient access rights, or permission levels, to perform any operations on network elements (the devices, such as routers,

More information

Entourage - an Introduction to E-mail

Entourage - an Introduction to E-mail Entourage - an Introduction to E-mail Version 2004 for Macintosh Table of Contents What is Entourage Starting Entourage The Navigation Pane Getting Help Creating and Sending a Message Using the UI Exchange

More information

DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL

DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL Version 2.0 Updated: March 2011 Contents 1. Mac Email Clients... 3 1.1 Configuring Microsoft Outlook 2011... 3 1.2 Configuring Entourage 2008... 4 1.3.

More information

Cannot send Autosupport e-mail, error message: Unknown User

Cannot send Autosupport e-mail, error message: Unknown User Cannot send Autosupport e-mail, error message: Unknown User Symptoms Unable to send Autosupport e-mails and the following error message is reported: asup.smtp.fail http://now.netapp.com/eservice/ems?emsaction=details&eventid=200573&software=ontap&em

More information

Once logged in you will have two options to access your e mails

Once logged in you will have two options to access your e mails How do I access Webmail? Webmail You can access web mail at:- http://stu.utt.edu.tt:2095 or https://stu.utt.edu.tt:2096 Enter email address i.e. user name (full email address needed eg. fn.ln@stu.utt.edu.tt

More information

WEBROOT EMAIL ARCHIVING SERVICE. Getting Started Guide North America. The best security in an unsecured world. TM

WEBROOT EMAIL ARCHIVING SERVICE. Getting Started Guide North America. The best security in an unsecured world. TM WEBROOT EMAIL ARCHIVING SERVICE Getting Started Guide North America Webroot Software, Inc. World Headquarters 2560 55th Street Boulder CO 80301 USA www.webroot.com 800.870.8102 Table of Contents Create

More information