<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-CA">
	<id>http://help.computerisms.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bayan</id>
	<title>help.computerisms.ca - User contributions [en-ca]</title>
	<link rel="self" type="application/atom+xml" href="http://help.computerisms.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bayan"/>
	<link rel="alternate" type="text/html" href="http://help.computerisms.ca/Special:Contributions/Bayan"/>
	<updated>2026-04-24T16:17:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=IPUPDATE&amp;diff=1115</id>
		<title>IPUPDATE</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=IPUPDATE&amp;diff=1115"/>
		<updated>2016-11-30T00:50:48Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Include as part of the netup.sh script so that when a dynamic IP address change happens, the system keeps working&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
if [[ ! -d /root/scripts/IPINFO ]]; then&lt;br /&gt;
        mkdir -p /root/scripts/IPINFO&lt;br /&gt;
fi&lt;br /&gt;
if [ -e /root/scripts/IPINFO/ipaddr ]; then&lt;br /&gt;
        OLDIP=$(cat /root/scripts/IPINFO/ipaddr)&lt;br /&gt;
else&lt;br /&gt;
        OLDIP=&amp;quot;&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ -e /root/scripts/IPINFO/bcast ]; then&lt;br /&gt;
        OLDBC=$(cat /root/scripts/IPINFO/bcast)&lt;br /&gt;
else&lt;br /&gt;
        OLDBC=&amp;quot;&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ -e /root/scripts/IPINFO/gateway ]; then&lt;br /&gt;
        OLDGW=$(cat /root/scripts/IPINFO/gateway)&lt;br /&gt;
else&lt;br /&gt;
        OLDGW=&amp;quot;&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
while [[ ! -n $CURIP || ! -n $CURBC || ! -n $CURGW ]]; do &lt;br /&gt;
	CURIP=$(ip addr show dev eth0 | grep inet | head -1 | cut -f 6 -d &amp;quot; &amp;quot; | cut -f 1 -d \/)&lt;br /&gt;
	CURBC=$(ip addr show dev eth0 | grep inet | head -1 | cut -f 8 -d &amp;quot; &amp;quot; | cut -f 1 -d \/)&lt;br /&gt;
	CURGW=$(ip route | grep default | cut -f 3 -d &amp;quot; &amp;quot;)&lt;br /&gt;
	sleep 3&lt;br /&gt;
done&lt;br /&gt;
&lt;br /&gt;
if [[ $CURIP != $OLDIP ]]; then&lt;br /&gt;
        for i in /root/scripts/iptables-restore /etc/ipsec.conf /etc/ipsec.secrets /etc/xl2tpd/xl2tpd.conf; do&lt;br /&gt;
                sed -i s/$OLDIP/$CURIP/g $i;&lt;br /&gt;
        done&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
if [[ $CURBC != $OLDBC ]]; then&lt;br /&gt;
        for i in /root/scripts/iptables-restore /etc/ipsec.conf /etc/xl2tpd/xl2tpd.conf; do&lt;br /&gt;
                sed -i s/$OLDBC/$CURBC/g $i;&lt;br /&gt;
        done&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
if [[ $CURGW != $OLDGW ]]; then&lt;br /&gt;
        for i in /root/scripts/iptables-restore /etc/ipsec.conf /etc/xl2tpd/xl2tpd.conf; do&lt;br /&gt;
                sed -i s/$OLDGW/$CURGW/g $i;&lt;br /&gt;
        done&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
echo -n &amp;quot;$CURIP&amp;quot; &amp;gt; /root/scripts/IPINFO/ipaddr&lt;br /&gt;
echo -n &amp;quot;$CURBC&amp;quot; &amp;gt; /root/scripts/IPINFO/bcast&lt;br /&gt;
echo -n &amp;quot;$CURGW&amp;quot; &amp;gt; /root/scripts/IPINFO/gateway&lt;br /&gt;
&lt;br /&gt;
/etc/init.d/ipsecsetup restart&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Android&amp;diff=1114</id>
		<title>Android</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Android&amp;diff=1114"/>
		<updated>2016-11-15T00:53:48Z</updated>

		<summary type="html">&lt;p&gt;Bayan: Created page with &amp;quot;==How to setup shared address book on android== {| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%; |- |style=&amp;quot;width: 50%&amp;quot;| *Open the Play...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to setup shared address book on android==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open the Play Store on your phone and search for cardav&lt;br /&gt;
|[[File:cardavandroid1.png|center|290px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:cardavandroid2.png|center|290px]]&lt;br /&gt;
|&lt;br /&gt;
*Install the CardDAV-Sync free on your phone&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*After installation has finished open the app&lt;br /&gt;
*Chose CardDAV in add account section&lt;br /&gt;
||[[File:cardavandroid3.png|center|290px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:cardavandroid4.png|center|290px]]&lt;br /&gt;
|&lt;br /&gt;
*Fill in the information as it showed in the example just replace the Servername and Username and Password with your information&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*If you are a Computerisms customer fill and you received this Warning confirm that the issuer is Computerisms Certificate Authority than choose OK&lt;br /&gt;
|[[File:cardavandroid5.png|center|290px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:cardavandroid6.png|center|290px]]&lt;br /&gt;
|&lt;br /&gt;
*Choose the addressbook or all of the addressbooks that you would like to add from the list(if you have multiple address books) than press Next&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*You can choose account name for your addressbook if you wish at this step tyhan you can press finished&lt;br /&gt;
*You are now setup with the shared addressbook. Your contacts will automatically downloads from your addressbook to your android phone(if you have a already added contacts to your shared addressbook) or you can simply navigate to your contacts app and copy your contacts from your phone to this fabulous online service to keep a backup or share it with your other devices  &lt;br /&gt;
|[[File:cardavandroid7.png|center|290px]]&lt;br /&gt;
|-&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Cardavandroid7.png&amp;diff=1113</id>
		<title>File:Cardavandroid7.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Cardavandroid7.png&amp;diff=1113"/>
		<updated>2016-11-15T00:34:15Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Cardavandroid6.png&amp;diff=1112</id>
		<title>File:Cardavandroid6.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Cardavandroid6.png&amp;diff=1112"/>
		<updated>2016-11-15T00:33:59Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Cardavandroid5.png&amp;diff=1111</id>
		<title>File:Cardavandroid5.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Cardavandroid5.png&amp;diff=1111"/>
		<updated>2016-11-15T00:33:46Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Cardavandroid4.png&amp;diff=1110</id>
		<title>File:Cardavandroid4.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Cardavandroid4.png&amp;diff=1110"/>
		<updated>2016-11-15T00:33:34Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Cardavandroid3.png&amp;diff=1109</id>
		<title>File:Cardavandroid3.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Cardavandroid3.png&amp;diff=1109"/>
		<updated>2016-11-15T00:33:16Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Cardavandroid2.png&amp;diff=1108</id>
		<title>File:Cardavandroid2.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Cardavandroid2.png&amp;diff=1108"/>
		<updated>2016-11-15T00:33:04Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Cardavandroid1.png&amp;diff=1107</id>
		<title>File:Cardavandroid1.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Cardavandroid1.png&amp;diff=1107"/>
		<updated>2016-11-15T00:32:49Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Shared_Address_Book&amp;diff=1106</id>
		<title>Shared Address Book</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Shared_Address_Book&amp;diff=1106"/>
		<updated>2016-11-15T00:32:23Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Clients */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Setting up Shared Address Books is a two part process&lt;br /&gt;
*First, you must log into the server interface to create the address books and grant permission to other user to access them&lt;br /&gt;
**The act of logging in will create a default calendar and address book for that user.&lt;br /&gt;
**It is required that a user log in before he can be granted permissions to any address books&lt;br /&gt;
*Then you need to configure your CardDAV client to access the address books you created&lt;br /&gt;
**There is no web interface for the address books, you must access them through a client such as thunderbird or webmail.&lt;br /&gt;
*This interface is a little bit overwhelming at first, but so is the number of things you can do with it&lt;br /&gt;
**This page will not show you everything you can do, but it should show you some of the basic functions without making you learn all there is to know.&lt;br /&gt;
&lt;br /&gt;
==I Just Want an Address Book That All My Devices Will Sync With==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Go to [[Domain Substitution|https://cal.domain.tld]] and accept the Security Certificate warning&lt;br /&gt;
*Login with your email address as your User Name and your email password for Password and click Go&lt;br /&gt;
|[[File:Help.davical.login.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.nav.mydetail.png|center|500px]]&lt;br /&gt;
|*Ignore the contents of this page for now, at the top of the page, put your mouse on UserFunctions and then select &amp;quot;View My Details&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Scroll down and find the blue bar labelled Principal Collections&lt;br /&gt;
*Identify under Display Name which line corresponds to your address book (not your calendar).  &lt;br /&gt;
*Click the link in the left most column on the identified line.  It will be a four or five digit number.&lt;br /&gt;
|[[File:Help.davical.select.book.principal.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.book.dav.path.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Near the top of the page, take note of the value for DAV Path&lt;br /&gt;
**You will need this information to set up your devices, so either highlight and copy this or write it down.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*To be safe, always log out when you are finished&lt;br /&gt;
*Proceed with setting up your [[#Clients|calendar clients]]&lt;br /&gt;
|[[File:Help.davical.logout.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==I Need More Address Books==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Go to https://cal.domain.tld and accept the Security Certificate warning&lt;br /&gt;
*Login with your email address as your User Name and your email password for Password and click Go&lt;br /&gt;
|[[File:Help.davical.login.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.nav.mydetail.png|center|500px]]&lt;br /&gt;
|*Ignore the contents of this page for now, at the top of the page, put your mouse on UserFunctions and then select &amp;quot;View My Details&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Scroll down and find the blue bar labelled Principal Collections&lt;br /&gt;
*Click the button called Create Collection&lt;br /&gt;
|[[File:Help.davical.create.collection.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.new.book.collection.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*After you click the Create Collection button, you will be presented with a screen to configure your new address book&lt;br /&gt;
*Enter an ending to your DAV Path&lt;br /&gt;
**The DAV Path is an arbitrary value, but you should pick something that represents the function of the address book&lt;br /&gt;
**Do not use spaces, and only use letters and numbers.&lt;br /&gt;
*Set the display name&lt;br /&gt;
**This name is also arbitrary, and does not need to be the same as you enter for DAV Path.  It is just easier if you do.&lt;br /&gt;
*deselect Calendar and select Address Book.&lt;br /&gt;
*If you do not wish to provide default access to your address book, then deselect Default Privileges.&lt;br /&gt;
*When everything is set, click the Create  Button.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*To be safe, always log out when you are finished&lt;br /&gt;
*Now, obtain your [[#I Just Want a Calendar That All My Devices Will Sync With|DAV Path]], [[#I Need My Assistant To Edit My Calendar|Grant permission to other users to access or modify your Calendar]] and proceed to [[#Clients|configuring your clients]]&lt;br /&gt;
|[[File:Help.davical.logout.png|center|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Address Book Permissions==&lt;br /&gt;
*All address books must be created by a user and therefore owned by a user.&lt;br /&gt;
*That user will then grant permissions to other people, identified by their email address or group, to read and/or modify their address books&lt;br /&gt;
**The user being granted permission will use his own email address and email password to access your address books&lt;br /&gt;
*you may [[#I have many users and many address books, How do I use groups to ease management?|create groups]] to manage users more easily&lt;br /&gt;
&lt;br /&gt;
==I Need My Assistant To Edit My Address Book==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Before you begin:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*Your Assistant must have logged into the server at [[Domain Substitution|https://cal.domain.tld]] at least once.&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Go to [[Domain Substitution|https://cal.domain.tld]] and accept the Security Certificate warning&lt;br /&gt;
*Login with your email address as your User Name and your email password for Password and click Go&lt;br /&gt;
|[[File:Help.davical.login.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.nav.mydetail.png|center|500px]]&lt;br /&gt;
|*Ignore the contents of this page for now, at the top of the page, put your mouse on UserFunctions and then select &amp;quot;View My Details&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Scroll down and find the blue bar labelled Principal Collections&lt;br /&gt;
*Identify under Display Name which line corresponds to your address book (not your calendar).  &lt;br /&gt;
*Click the link in the left most column on the identified line.  It will be a four or five digit number.&lt;br /&gt;
|[[File:Help.davical.select.book.principal.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.grant.book.permissions.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Note the DAV Path, your assistant will need this information to set up their address book client&lt;br /&gt;
*Under &amp;quot;To ID Display Name&amp;quot; use the drop down menu to select your assistant&#039;s email address&lt;br /&gt;
*Select the individual permissions to grant to your assistant, or use one of the blue buttons to select a pre-generated subset&lt;br /&gt;
**All Permissions will do exactly as it says, grant that user full permission to organize your address book anyway they see fit&lt;br /&gt;
**Read/Write access allows the user to modify your address book, such as delete contacts and create new ones.&lt;br /&gt;
**Read access will allow the user to view your address book entries, but will not let the user add or delete contacts&lt;br /&gt;
**If you know what the other items are, you will know if you need them; else you don&#039;t need them.&lt;br /&gt;
*Click the Grant button. &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*After you click the Grant Button, The user will be displayed with a link so you can look at the details of that user&lt;br /&gt;
*The privileges that have been granted to this user will be listed&lt;br /&gt;
*Use the Edit and Revoke buttons to modify or remove a user&#039;s ability to access your address book respectively&lt;br /&gt;
*You may add multiple users and grant each of them a different set of permissions&lt;br /&gt;
|[[File:Help.davical.grant.perms.2.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.logout.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*To be safe, always log out when you are finished&lt;br /&gt;
*Your assistant now needs to configure his/her [[#Clients|calendar clients]]&lt;br /&gt;
**When your assistant adds a new calendar to his/her calendar client, he/she will use the DAV Path you obtained from two rows above and his/her own email address and email password&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==I have many users and many address books, How do I use groups to ease management?==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Before you begin:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*You must be logged in as an administrative user (Typically that is the email of the person who owns the domain name)&lt;br /&gt;
*You may &amp;quot;nest&amp;quot; groups - which means you may make a group a member of another group, and then that group may be a member of another group.&lt;br /&gt;
**If nesting groups go through too many layers, it will slow the server down.  &lt;br /&gt;
**Rather than have me come ask you to redo your groups, please do not add groups that already have a group to a new group. In other words, do not nest more than one deep.&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Go to https://cal.domain.tld and accept the Security Certificate warning&lt;br /&gt;
*Login with your email address as your User Name and your email password for Password and click Go&lt;br /&gt;
|[[File:Help.davical.login.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.nav.create.principal.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*In the top left corner of the page, put your mouse on User Functions and select Create Principal&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Choose a Username for this group&lt;br /&gt;
**The Username for the group is arbitrary, but should have some meaning to the address book administrator to ease management&lt;br /&gt;
*Set the password&lt;br /&gt;
**The Username and password for the group can be given to other people to manage, if you like&lt;br /&gt;
*Fullname will be the name that is displayed throughout the interface to represent this group &lt;br /&gt;
*Email address is the address associated with this group&lt;br /&gt;
*Locale - if you do not want standard Canadian English, change this&lt;br /&gt;
*Date Format Style:&lt;br /&gt;
**European date formate is dd/mm/yyyy&lt;br /&gt;
**ISO (international) format is yyyy/mm/dd&lt;br /&gt;
**US date format is mm/dd/yyyy&lt;br /&gt;
*Set the Principal Type to be group&lt;br /&gt;
*Set permissions&lt;br /&gt;
**Every user will have these permissions on any address book this group owns.&lt;br /&gt;
*When everything is to your satisfaction, click the create button&lt;br /&gt;
|[[File:Help.davical.create.group.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Help.davical.group.add.members.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*After you click the create button, you will be brought to a page where you can manage your group&lt;br /&gt;
*On this page, you may create a new address book or calendar that will be owned by this group&lt;br /&gt;
**Permissions can then be granted to other groups and users on those created calendars&lt;br /&gt;
*To add members to the group, scroll down to the Group Members section&lt;br /&gt;
**Select a user from the drop down menu and select Add&lt;br /&gt;
**Previously Added members will show up just above the drop down menu&lt;br /&gt;
**Remove members from the group by pressing the remove button&lt;br /&gt;
*Now, [[#I Need My Assistant To Edit My Address Book|when granting permissions to other user]] you may grant a group access to an address book instead of a user&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*To be safe, always log out when you are finished&lt;br /&gt;
**When your assistant adds a new calendar to his/her calendar client, he/she will use the DAV Path you obtained from two rows above and his/her own email address and email password&lt;br /&gt;
|[[File:Help.davical.logout.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Clients==&lt;br /&gt;
*[[Thunderbird#Shared Address Book|How to set up Shared Address Books in Thunderbird/Lightning]]&lt;br /&gt;
*[[Round Cube#Shared Address Book|How to set up Shared Address Books in RoundCube Webmail]]&lt;br /&gt;
*[[Android#Shared Address Book|How to set up Shared Address Books in Android]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=How_to_set_up_Calendars_in_iCal&amp;diff=1105</id>
		<title>How to set up Calendars in iCal</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=How_to_set_up_Calendars_in_iCal&amp;diff=1105"/>
		<updated>2016-11-14T23:49:09Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;50&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Run the Apple iCal/Calendar application&lt;br /&gt;
|[[File:Screen_Shot_2014-11-17_at_2.32.34_PM.png‎|60px|]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Screen_Shot_2014-11-17_at_2.37.54_PM.png|200px|]]&lt;br /&gt;
|&lt;br /&gt;
*In the menu, select &#039;&#039;&#039;iCal/Calendar&#039;&#039;&#039; → &#039;&#039;&#039;Preferences&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*go to tab &#039;&#039;&#039;Accounts&#039;&#039;&#039;&lt;br /&gt;
*Click on the &#039;&#039;&#039;+&#039;&#039;&#039; button to create a new account &lt;br /&gt;
|[[File:Screen_Shot_2014-11-17_at_2.39.05_PM.png|center|400px|]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Screen_Shot_2014-11-17_at_2.39.28_PM.png|center|400px|]]&lt;br /&gt;
|&lt;br /&gt;
*Choose &#039;&#039;&#039;Add CalDav Account...&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Choose Account Type: &#039;&#039;&#039;Manual&#039;&#039;&#039;&lt;br /&gt;
*Type your User Name, Password and Server Address [[http://help.computerisms.ca/index.php/Domain_Substitution domain.tld]]&lt;br /&gt;
|[[File:Screen_Shot_2014-11-17_at_2.46.01_PM.png|center|400px|]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Screen_Shot_2014-11-17_at_2.49.27_PM.png|center|400px|]]&lt;br /&gt;
|&lt;br /&gt;
*Next step you need Verify Certificate in Safari browser&lt;br /&gt;
*Open Safari and type your&lt;br /&gt;
*Choose &#039;&#039;&#039;Show Certificate&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Choose [http://help.computerisms.ca/index.php/Domain_Substitution domain.tld] &#039;&#039;&#039;Certificate Authority&#039;&#039;&#039;&lt;br /&gt;
*Choose &#039;&#039;&#039;Trust&#039;&#039;&#039;&lt;br /&gt;
|[[File:Screen_Shot_2014-11-17_at_2.53.20_PM.png|center|400px|]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Screen_Shot_2014-11-17_at_2.53.41_PM.png|center|400px|]]&lt;br /&gt;
|&lt;br /&gt;
*Choose &#039;&#039;&#039;Always trust&#039;&#039;&#039; &lt;br /&gt;
|-&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Backup.bat&amp;diff=1104</id>
		<title>Backup.bat</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Backup.bat&amp;diff=1104"/>
		<updated>2016-09-09T23:53:49Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Put this in a text file and save it on the desktop.  Use computer&#039;s disk management to ensure removable drive always gets drive letter e:.  User can plug in his drive, double click the file, and backup his data.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@echo off&lt;br /&gt;
&lt;br /&gt;
ren e:\daily.4 daily.5&lt;br /&gt;
ren e:\daily.3 daily.4&lt;br /&gt;
ren e:\daily.2 daily.3&lt;br /&gt;
ren e:\daily.1 daily.2&lt;br /&gt;
ren e:\daily.0 daily.1&lt;br /&gt;
&lt;br /&gt;
mkdir e:\daily.0&lt;br /&gt;
mkdir e:\daily.0\docs&lt;br /&gt;
mkdir e:\daily.0\mail&lt;br /&gt;
mkdir e:\daily.0\favs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
xcopy /I /Y /E /C &amp;quot;C:\Documents and Settings\staff\My Documents&amp;quot; e:\daily.0\docs&lt;br /&gt;
xcopy /I /Y /E /C &amp;quot;C:\Documents and Settings\staff\Application Data\Thunderbird\Profiles&amp;quot; e:\daily.0\mail&lt;br /&gt;
xcopy /I /Y /E /C &amp;quot;C:\Documents and Settings\staff\Favorites&amp;quot; e:\daily.0\favs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1103</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1103"/>
		<updated>2016-08-19T16:48:14Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* How to setup your email on iPhone */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Thunderbird==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Outlook==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Windows 10 Operation System|How to install Computerisms Certificate Authority into your Windows 10 Operation System]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Click on File tab on the top left of Outlook&lt;br /&gt;
*Select &amp;quot;Add Account&amp;quot;&lt;br /&gt;
|[[File:Outlookmail1.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail2.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Select the &amp;quot;Manual setup or additional server types&amp;quot;&lt;br /&gt;
*Click Next&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Select POP or IMAP than click next&lt;br /&gt;
|[[File:Outlookmail3.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail4.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*1: Fill the required information&lt;br /&gt;
**Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
**Make sure that your username is your full email address&lt;br /&gt;
*2: Click on &amp;quot;More Settings&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Click on the Outgoing server tab&lt;br /&gt;
*On the Outgoing Sever tab Check the &amp;quot;My outgoing server(SMTP) requires authentication&amp;quot; and make sure that the &amp;quot;Use same settings as y incoming mail server&amp;quot; is selected&lt;br /&gt;
|[[File:Outlookmail5.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail6.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Click on the Advance tab&lt;br /&gt;
**Chose port 993 if you are using IMAP or 995 if you are using POP3 for incoming server and the encryption type must be set to SSL&lt;br /&gt;
**Chose port 587 for Outgoing (SMTP) server and the encryption type must be set to TLS&lt;br /&gt;
*Click on Ok&lt;br /&gt;
*Click Next&lt;br /&gt;
*If everything setup correctly outlook should be able to login to your account and send a test message&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on iPhone==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;75&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Navigate to your settings and select the Mail, Contacts, Calenders settings&lt;br /&gt;
|[[File:Iphoneemail1.JPG|centre|450x450px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Iphoneemail2.JPG|centre|450x450px]]&lt;br /&gt;
|&lt;br /&gt;
*Select Add Account&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Select &amp;quot;Other&amp;quot; to add a POP3 or IMAP account&lt;br /&gt;
|[[File:Iphoneemail3.JPG|centre|450x450px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Iphoneemail4.JPG|centre|450x450px]]&lt;br /&gt;
|&lt;br /&gt;
*Choose Add Mail Account&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email, Password and a Description &lt;br /&gt;
*Click Next&lt;br /&gt;
|[[File:Iphoneemail5.JPG|centre|450x450px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Iphoneemail6.JPG|centre|450x450px]]&lt;br /&gt;
|&lt;br /&gt;
*For Incoming mail server&lt;br /&gt;
**Host name: mail.domain.tld (for example mail.ctfn.ca)&lt;br /&gt;
**User Name is your full email address&lt;br /&gt;
**Password is the same password that you are using for email&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*For Outgoing Mail Server:&lt;br /&gt;
**Host name: mail.domain.tld (for example mail.ctfn.ca)&lt;br /&gt;
**User Name is your full email address&lt;br /&gt;
**Password is the same password that you are using for email&lt;br /&gt;
*Click Next and your email should be ready&lt;br /&gt;
*Recommended : send an email to your self to check and make sure all settings are working&lt;br /&gt;
|[[File:Iphoneemail7.JPG|centre|450x450px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Iphoneemail7.JPG&amp;diff=1102</id>
		<title>File:Iphoneemail7.JPG</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Iphoneemail7.JPG&amp;diff=1102"/>
		<updated>2016-08-19T16:30:27Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Iphoneemail6.JPG&amp;diff=1101</id>
		<title>File:Iphoneemail6.JPG</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Iphoneemail6.JPG&amp;diff=1101"/>
		<updated>2016-08-19T16:30:15Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Iphoneemail5.JPG&amp;diff=1100</id>
		<title>File:Iphoneemail5.JPG</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Iphoneemail5.JPG&amp;diff=1100"/>
		<updated>2016-08-19T16:30:05Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Iphoneemail4.JPG&amp;diff=1099</id>
		<title>File:Iphoneemail4.JPG</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Iphoneemail4.JPG&amp;diff=1099"/>
		<updated>2016-08-19T16:29:54Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Iphoneemail3.JPG&amp;diff=1098</id>
		<title>File:Iphoneemail3.JPG</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Iphoneemail3.JPG&amp;diff=1098"/>
		<updated>2016-08-19T16:29:38Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Iphoneemail2.JPG&amp;diff=1097</id>
		<title>File:Iphoneemail2.JPG</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Iphoneemail2.JPG&amp;diff=1097"/>
		<updated>2016-08-19T16:29:27Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Iphoneemail1.JPG&amp;diff=1096</id>
		<title>File:Iphoneemail1.JPG</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Iphoneemail1.JPG&amp;diff=1096"/>
		<updated>2016-08-19T16:29:13Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1094</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1094"/>
		<updated>2016-08-19T16:24:21Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Supported Programs and Devices */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Thunderbird==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Outlook==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Windows 10 Operation System|How to install Computerisms Certificate Authority into your Windows 10 Operation System]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Click on File tab on the top left of Outlook&lt;br /&gt;
*Select &amp;quot;Add Account&amp;quot;&lt;br /&gt;
|[[File:Outlookmail1.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail2.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Select the &amp;quot;Manual setup or additional server types&amp;quot;&lt;br /&gt;
*Click Next&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Select POP or IMAP than click next&lt;br /&gt;
|[[File:Outlookmail3.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail4.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*1: Fill the required information&lt;br /&gt;
**Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
**Make sure that your username is your full email address&lt;br /&gt;
*2: Click on &amp;quot;More Settings&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Click on the Outgoing server tab&lt;br /&gt;
*On the Outgoing Sever tab Check the &amp;quot;My outgoing server(SMTP) requires authentication&amp;quot; and make sure that the &amp;quot;Use same settings as y incoming mail server&amp;quot; is selected&lt;br /&gt;
|[[File:Outlookmail5.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail6.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Click on the Advance tab&lt;br /&gt;
**Chose port 993 if you are using IMAP or 995 if you are using POP3 for incoming server and the encryption type must be set to SSL&lt;br /&gt;
**Chose port 587 for Outgoing (SMTP) server and the encryption type must be set to TLS&lt;br /&gt;
*Click on Ok&lt;br /&gt;
*Click Next&lt;br /&gt;
*If everything setup correctly outlook should be able to login to your account and send a test message&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on iPhone==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1093</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1093"/>
		<updated>2016-08-19T16:23:41Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Thunderbird==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Outlook==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Windows 10 Operation System|How to install Computerisms Certificate Authority into your Windows 10 Operation System]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Click on File tab on the top left of Outlook&lt;br /&gt;
*Select &amp;quot;Add Account&amp;quot;&lt;br /&gt;
|[[File:Outlookmail1.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail2.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Select the &amp;quot;Manual setup or additional server types&amp;quot;&lt;br /&gt;
*Click Next&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Select POP or IMAP than click next&lt;br /&gt;
|[[File:Outlookmail3.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail4.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*1: Fill the required information&lt;br /&gt;
**Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
**Make sure that your username is your full email address&lt;br /&gt;
*2: Click on &amp;quot;More Settings&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Click on the Outgoing server tab&lt;br /&gt;
*On the Outgoing Sever tab Check the &amp;quot;My outgoing server(SMTP) requires authentication&amp;quot; and make sure that the &amp;quot;Use same settings as y incoming mail server&amp;quot; is selected&lt;br /&gt;
|[[File:Outlookmail5.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail6.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Click on the Advance tab&lt;br /&gt;
**Chose port 993 if you are using IMAP or 995 if you are using POP3 for incoming server and the encryption type must be set to SSL&lt;br /&gt;
**Chose port 587 for Outgoing (SMTP) server and the encryption type must be set to TLS&lt;br /&gt;
*Click on Ok&lt;br /&gt;
*Click Next&lt;br /&gt;
*If everything setup correctly outlook should be able to login to your account and send a test message&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1092</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1092"/>
		<updated>2016-08-16T22:54:34Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* How to setup your email on Outlook */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Thunderbird==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Outlook==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Windows 10 Operation System|How to install Computerisms Certificate Authority into your Windows 10 Operation System]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Click on File tab on the top left of Outlook&lt;br /&gt;
*Select &amp;quot;Add Account&amp;quot;&lt;br /&gt;
|[[File:Outlookmail1.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail2.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Select the &amp;quot;Manual setup or additional server types&amp;quot;&lt;br /&gt;
*Click Next&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Select POP or IMAP than click next&lt;br /&gt;
|[[File:Outlookmail3.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail4.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*1: Fill the required information&lt;br /&gt;
**Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
**Make sure that your username is your full email address&lt;br /&gt;
*2: Click on &amp;quot;More Settings&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Click on the Outgoing server tab&lt;br /&gt;
*On the Outgoing Sever tab Check the &amp;quot;My outgoing server(SMTP) requires authentication&amp;quot; and make sure that the &amp;quot;Use same settings as y incoming mail server&amp;quot; is selected&lt;br /&gt;
|[[File:Outlookmail5.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail6.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Click on the Advance tab&lt;br /&gt;
**Chose port 993 if you are using IMAP or 995 if you are using POP3 for incoming server and the encryption type must be set to SSL&lt;br /&gt;
**Chose port 587 for Outgoing (SMTP) server and the encryption type must be set to TLS&lt;br /&gt;
*Click on Ok&lt;br /&gt;
*Click Next&lt;br /&gt;
*If everything setup correctly outlook should be able to login to your account and send a test message&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1091</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1091"/>
		<updated>2016-08-16T22:54:20Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* How to setup your email on Outlook */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Thunderbird==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Outlook==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Windows 10 Operation System|How to install Computerisms Certificate Authority into your Windows 10 Operation System]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Click on File tab on the top left of Outlook&lt;br /&gt;
*Select &amp;quot;Add Account&amp;quot;&lt;br /&gt;
|[[File:Outlookmail1.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail2.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Select the &amp;quot;Manual setup or additional server types&amp;quot;&lt;br /&gt;
*Click Next&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Select POP or IMAP than click next&lt;br /&gt;
|[[File:Outlookmail3.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail4.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*1: Fill the required information&lt;br /&gt;
**Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
**Make sure that your username is your full email address&lt;br /&gt;
*2: Click on &amp;quot;More Settings&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Click on the Outgoing server tab&lt;br /&gt;
*On the Outgoing Sever tab Check the &amp;quot;My outgoing server(SMTP) requires authentication&amp;quot; and make sure that the &amp;quot;Use same settings as y incoming mail server&amp;quot; is selected&lt;br /&gt;
|[[File:Outlookmail5.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail6.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Click on the Advance tab&lt;br /&gt;
**Chose port 993 if you are using IMAP or 995 if you are using POP3 for incoming server and the encryption type must be set to SSL&lt;br /&gt;
**Chose port 587 for Outgoing (SMTP) server and the encryption type must be set to TLS&lt;br /&gt;
*Click on Ok&lt;br /&gt;
*Click Next&lt;br /&gt;
*If everything setup correctly outlook should be able to login to your account and send a test message&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1090</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1090"/>
		<updated>2016-08-16T22:32:59Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* How to setup your email on Outlook */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Thunderbird==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Outlook==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Click on File tab on the top left of Outlook&lt;br /&gt;
*Select &amp;quot;Add Account&amp;quot;&lt;br /&gt;
|[[File:Outlookmail1.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail2.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Select the &amp;quot;Manual setup or additional server types&amp;quot;&lt;br /&gt;
*Click Next&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Select POP or IMAP than click next&lt;br /&gt;
|[[File:Outlookmail3.png|center|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Outlookmail4.png|center|500px]]&lt;br /&gt;
|&lt;br /&gt;
*1: Fill the required information&lt;br /&gt;
**Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
**Make sure that your username is your full email address&lt;br /&gt;
*2: Click on &amp;quot;More Settings&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*On the Outgoing Sever tab Check the &amp;quot;My outgoing server(SMTP) &lt;br /&gt;
|[[File:Outlookmail5.png|center|500px]]&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1089</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1089"/>
		<updated>2016-08-16T22:09:36Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Picture Instructions For Configuring Email Clients */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Thunderbird==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==How to setup your email on Outlook==&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Outlookmail6.png&amp;diff=1088</id>
		<title>File:Outlookmail6.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Outlookmail6.png&amp;diff=1088"/>
		<updated>2016-08-16T22:06:26Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Outlookmail5.png&amp;diff=1087</id>
		<title>File:Outlookmail5.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Outlookmail5.png&amp;diff=1087"/>
		<updated>2016-08-16T22:06:18Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Outlookmail4.png&amp;diff=1086</id>
		<title>File:Outlookmail4.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Outlookmail4.png&amp;diff=1086"/>
		<updated>2016-08-16T22:06:00Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Outlookmail3.png&amp;diff=1085</id>
		<title>File:Outlookmail3.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Outlookmail3.png&amp;diff=1085"/>
		<updated>2016-08-16T22:05:50Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Outlookmail2.png&amp;diff=1084</id>
		<title>File:Outlookmail2.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Outlookmail2.png&amp;diff=1084"/>
		<updated>2016-08-16T22:05:41Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Outlookmail1.png&amp;diff=1083</id>
		<title>File:Outlookmail1.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Outlookmail1.png&amp;diff=1083"/>
		<updated>2016-08-16T22:05:30Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1082</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1082"/>
		<updated>2016-08-16T21:25:08Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Picture Instructions For Configuring Email Clients */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Picture Instructions For Configuring Email Clients==&lt;br /&gt;
&amp;lt;h5&amp;gt;How to setup your email on Thunderbird&amp;lt;/h5&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1081</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1081"/>
		<updated>2016-08-16T21:23:38Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Picture Instructions For Configuring Email Clients */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Picture Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tbemail2.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter your Name, Email and Password and click on Continue&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*Make sure the server host name for both Incoming and Outgoing is mail.domain.tld&lt;br /&gt;
*For IMAP configure using SSL (port 993)&lt;br /&gt;
*For POP3 configure using SSL (port 995)&lt;br /&gt;
*For SMTP configure Port 587 With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
*Click on Done&lt;br /&gt;
*Your email is now setup send a email to yourself to make sure you can send and receive emails&lt;br /&gt;
|[[File:Tbemail3.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=Email&amp;diff=1080</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=Email&amp;diff=1080"/>
		<updated>2016-08-16T21:10:08Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|  [[file:thunderbird.png|link=http://help.computerisms.ca/images/1/16/ConfigureThunderbirdEmail.mp4|75px]]&lt;br /&gt;
|| [[file:Outlook.png|link=http://help.computerisms.ca/images/a/ab/ConfigureOutlookEmail.mp4|75px]]&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Media:ConfigureThunderbirdEmail.mp4|Thunderbird]]&lt;br /&gt;
||  [[Media:ConfigureOutlookEmail.mp4|Outlook]]&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Picture Instructions For Configuring Email Clients==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*&amp;lt;b&amp;gt;Required: Before continuing this section please complete [[How to import Certificate Authority in Windows 10#How to install Computerisms Certificate Authority into your Thunderbird mail client|How to install Computerisms Certificate Authority into your Thunderbird mail client]]&amp;lt;/b&amp;gt;&lt;br /&gt;
*Navigate to add a new account&lt;br /&gt;
*If you don&#039;t have any account setup on Thunderbird you can choose &amp;quot;Skip This and use my existing email&amp;quot; on the Thunderbird pop up welcome page to add a new account&lt;br /&gt;
|[[File:Tbemail1.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
==Supported Programs and Devices==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
|Thunderbird||Outlook||Eudora||Mac Mail&lt;br /&gt;
|-&lt;br /&gt;
|Android||IPad/IPhone||Blackberry||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Email Settings==&lt;br /&gt;
*IMAP: configure using SSL (port 993) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*POP3: configure using SSL (port 995) Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
*SMTP: Server:[[Domain Substitution|mail.domain.tld]]&lt;br /&gt;
**Port 25: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 26: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
**Port 465: With Authentication using incoming user/pass and SSL&lt;br /&gt;
**Port 587: With Authentication using incoming user/pass and STARTTLS&lt;br /&gt;
***Any of the above SMTP settings will work for your outgoing mail, if you are not sure which to use start with port 587, then 465.&lt;br /&gt;
***NOTE:nwtel users can also set up their outgoing mail server as smtp.northwestel.net with no encryption and no authentication.&lt;br /&gt;
***NOTE:3G devices can be configured to use mail.1xbell.ca as their outgoing server with no encryption and no authentication&lt;br /&gt;
&lt;br /&gt;
*Thunderbird Users: your domain is set up to auto configure itself, all you need to do is enter your Name, Email Address, and Password, and thunderbird will find and set the correct settings for you.&lt;br /&gt;
*Outlook Users: Outlook will take a few seconds, but will find the correct settings for your domain if you enter your Name, Email Address, and Password.&lt;br /&gt;
*Certificates are self-signed.  Please [[Security_Certificates#VIDEO:_Instructions_for_installing_the_Certificate_Authority_.28AKA.2C_getting_rid_of_those_warnings.29|install the CA certificate]], or if you are using a phone/tablet, choose to use all/any certificates when the setup process asks you about it&lt;br /&gt;
&lt;br /&gt;
==Server Side Filters==&lt;br /&gt;
&amp;lt;b&amp;gt;Server Side Message Filtering can be used by any program supporting the SIEVE protocol&amp;lt;/b&amp;gt;&lt;br /&gt;
*NOTE: Computerisms has Server Side Filtering disabled by default, please contact us to enable it&lt;br /&gt;
**Enabling this feature will disable the ability to do forwarding and autoreplies in [https://manage.computerisms.ca Qmailadmin]&lt;br /&gt;
**Qmailadmin is easier to use, Server Side Filtering provides more features and control&lt;br /&gt;
*The [http://sieve.info/ Sieve Protocol] is a platform independent method of filtering your mail&lt;br /&gt;
**This is commonly done using &amp;quot;Message Rules&amp;quot; or similar on email clients such as Thunderbird and Outlook, but your program needs to download the messages in order to filter them&lt;br /&gt;
**In this case, the server does the filtering so it can drop the mail in the correct folder before your email client knows it is there&lt;br /&gt;
**Sieve Protocol also allows for other features, such as Out of Office replies, forwarding, and copying.&lt;br /&gt;
***Be sure to include rules pertaining to BULK mail if you subscribe to mailing lists and want to use Out of Office replies&lt;br /&gt;
*[[Round Cube#Server Side Message Filtering|RoundCube]] can be used to implement Server Side Filters&lt;br /&gt;
*SquirrelMail also supports Server Side Filtering, just click on the coffee filter icon after you log in&lt;br /&gt;
*There is also a [https://addons.mozilla.org/en-US/thunderbird/addon/sieve/ a Thunderbird Plugin], but it&#039;s a bit complicated to use&lt;br /&gt;
&lt;br /&gt;
==Mail Management==&lt;br /&gt;
*[[QmailAdmin Management|Manage your email accounts, passwords, mailing lists, and more]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Tbemail3.png&amp;diff=1079</id>
		<title>File:Tbemail3.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Tbemail3.png&amp;diff=1079"/>
		<updated>2016-08-16T20:46:41Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Tbemail2.png&amp;diff=1078</id>
		<title>File:Tbemail2.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Tbemail2.png&amp;diff=1078"/>
		<updated>2016-08-16T20:46:31Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Tbemail1.png&amp;diff=1077</id>
		<title>File:Tbemail1.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Tbemail1.png&amp;diff=1077"/>
		<updated>2016-08-16T20:46:17Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1076</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1076"/>
		<updated>2016-08-16T20:29:55Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Manage Mailing Lists */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managenewemailacc.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddforward.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddmalinglist.png|centre|600px]]&lt;br /&gt;
|&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifyemail.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifyforwards.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemodifyforwards2.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemodifymailinglist.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1075</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1075"/>
		<updated>2016-08-16T20:26:29Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Manage Forwards */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managenewemailacc.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddforward.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddmalinglist.png|centre|600px]]&lt;br /&gt;
|&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifyemail.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifyforwards.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemodifyforwards2.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1074</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1074"/>
		<updated>2016-08-16T20:18:58Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Manage Email Accounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managenewemailacc.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddforward.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddmalinglist.png|centre|600px]]&lt;br /&gt;
|&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifyemail.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=File:Managemodifyforwards2.png&amp;diff=1073</id>
		<title>File:Managemodifyforwards2.png</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=File:Managemodifyforwards2.png&amp;diff=1073"/>
		<updated>2016-08-16T20:17:59Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1072</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1072"/>
		<updated>2016-08-16T18:33:15Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* New Mailing List */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managenewemailacc.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddforward.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddmalinglist.png|centre|600px]]&lt;br /&gt;
|&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
[[File:Email_Accounts.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1071</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1071"/>
		<updated>2016-08-16T18:28:57Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* New Forward */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managenewemailacc.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddforward.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Mailing_List.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
[[File:Email_Accounts.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1070</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1070"/>
		<updated>2016-08-16T18:28:46Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* New Forward */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managenewemailacc.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Manageaddforward.png|centre|500px]]&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Mailing_List.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
[[File:Email_Accounts.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1069</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1069"/>
		<updated>2016-08-16T18:26:08Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* New Email Account */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managenewemailacc.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_forward_account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Mailing_List.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
[[File:Email_Accounts.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1068</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1068"/>
		<updated>2016-08-16T18:14:28Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Modify User */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Email_Account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_forward_account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Mailing_List.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
[[File:Email_Accounts.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1067</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1067"/>
		<updated>2016-08-16T18:11:22Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Managemain.png|centre|500px]]&lt;br /&gt;
|&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Email_Account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_forward_account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Mailing_List.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
[[File:Email_Accounts.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1066</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1066"/>
		<updated>2016-08-16T18:08:53Z</updated>

		<summary type="html">&lt;p&gt;Bayan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
[[File:Login.png|centre]]&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Email_Account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_forward_account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Mailing_List.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
[[File:Email_Accounts.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
	<entry>
		<id>http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1065</id>
		<title>QmailAdmin Management</title>
		<link rel="alternate" type="text/html" href="http://help.computerisms.ca/index.php?title=QmailAdmin_Management&amp;diff=1065"/>
		<updated>2016-08-16T18:08:26Z</updated>

		<summary type="html">&lt;p&gt;Bayan: /* Regular Account */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video Instructions==&lt;br /&gt;
{| style=&amp;quot;width: 100%; border-spacing:15px;border-collapse:separate;border: 1px solid rgb(191, 238, 255); background-color: rgb(248, 102, 76);text-align:center;font-size:1.5em;&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;center&amp;quot; &lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; |  [[file:mail.png|link=http://help.computerisms.ca/images/7/77/QmailAdmin.GeneralUser.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/ef/QmailAdmin.MailingLists.mp4|75px]]&lt;br /&gt;
| style=&amp;quot;width: 33%;&amp;quot; | [[file:mail.png|link=http://help.computerisms.ca/images/e/e6/QmailAdmin.AdminUser.mp4|75px]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[Media:QmailAdmin.GeneralUser.mp4|Passwords, Forwards and&amp;lt;br&amp;gt;Auto Responses]] &lt;br /&gt;
|| [[Media:QmailAdmin.MailingLists.mp4|Mailing List&amp;lt;br&amp;gt;Management]]&lt;br /&gt;
|| [[Media:QmailAdmin.AdminUser.mp4|Domain/Account&amp;lt;br&amp;gt;Administration]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Regular Account=&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
|[[File:Managelogin.png|centre|500px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modify User==&lt;br /&gt;
{| style=&amp;quot;width:100%&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot; style=&amp;quot;font-size:120%;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width: 50%&amp;quot;|&lt;br /&gt;
*[[Media:QmailAdmin.GeneralUser.mp4|Watch the Video]] &lt;br /&gt;
*In this window you can:&lt;br /&gt;
**Enter your &#039;&#039;&#039;Real name&#039;&#039;&#039;&lt;br /&gt;
**Change &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
**Choose &#039;&#039;&#039;Routing&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;Standart (No Forwarding)&#039;&#039; - all emails go directly to your account.&lt;br /&gt;
***&#039;&#039;All mail deleted&#039;&#039; - all emails will be deleted by server.&lt;br /&gt;
***&#039;&#039;Forward To:&#039;&#039; - all emails will be sent to another email account.&lt;br /&gt;
**Set up &#039;&#039;&#039;Vacation Auto-Response&#039;&#039;&#039;&lt;br /&gt;
*When you finish editing account press &#039;&#039;&#039;Modify User&#039;&#039;&#039;&lt;br /&gt;
|[[File:Managemodifiuser.png|centre|500px]]&lt;br /&gt;
&lt;br /&gt;
=Admin Account=&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*Open Web browser&lt;br /&gt;
*Enter &#039;&#039;&#039;manage.&#039;&#039;&#039;[[Domain_Substitution|&#039;&#039;&#039;domain.tld&#039;&#039;&#039;]] in your address bar and press &#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
*You will be prompted for a &#039;&#039;&#039;username&#039;&#039;&#039; and &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;User Account&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;Domain Name&#039;&#039;&#039;&lt;br /&gt;
**Enter your &#039;&#039;&#039;email password&#039;&#039;&#039; as your Password&lt;br /&gt;
[[File:Login.png|centre]]&lt;br /&gt;
*When you login, you can see the &#039;&#039;&#039;Main menu&#039;&#039;&#039;&lt;br /&gt;
*As an administrator you can:&lt;br /&gt;
**Mamage:&lt;br /&gt;
***[[QmailAdmin Management#Manage Email Accounts|&#039;&#039;&#039;Email Accounts&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#Manage Forwards|&#039;&#039;&#039;Forwards&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;Robots&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#Manage Mailing Lists|&#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**Create:&lt;br /&gt;
***[[QmailAdmin Management#New Email Account|&#039;&#039;&#039;New Email Account&#039;&#039;&#039;]]&lt;br /&gt;
***[[QmailAdmin Management#New Forward|&#039;&#039;&#039;New Forward&#039;&#039;&#039;]]&lt;br /&gt;
***&#039;&#039;&#039;New Mail Robot&#039;&#039;&#039;&lt;br /&gt;
***[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;New Mailing List&#039;&#039;&#039;]]&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Email Account==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Email Account&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter new &#039;&#039;&#039;Email Account&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Password (again)&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Real Name&#039;&#039;&#039;, if you want&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Email_Account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Forward==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*Enter &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
*Enter &#039;&#039;&#039;Destination&#039;&#039;&#039;&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_forward_account.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==New Mailing List==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;New Mailing List&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*&#039;&#039;&#039;Enter&#039;&#039;&#039;&lt;br /&gt;
**Mailing List Name&lt;br /&gt;
**List owner email address&lt;br /&gt;
**Prefix outgoing subject headers with&lt;br /&gt;
*&#039;&#039;&#039;Choose Posting Messages:&#039;&#039;&#039;&lt;br /&gt;
**Anyone can post. &lt;br /&gt;
**Only subscribers can post, all others bounce. &lt;br /&gt;
**Only subscribers can post, all others go to moderators for approval. &lt;br /&gt;
**Only moderators can post, all others bounce. &lt;br /&gt;
**Only moderators can post, all messages go to moderators for approval. &lt;br /&gt;
*Choose in List Options &#039;&#039;&#039;Replies should go to&#039;&#039;&#039;&lt;br /&gt;
**the original sender&lt;br /&gt;
**the entire list&lt;br /&gt;
**the address&lt;br /&gt;
*Also you can check marks in sections&lt;br /&gt;
**Remote Administration&lt;br /&gt;
**Subscription Requests&lt;br /&gt;
**Message Archives&lt;br /&gt;
*When you done click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
*Click &#039;&#039;&#039;Add&#039;&#039;&#039; button&lt;br /&gt;
[[File:Add_Mailing_List.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Email Accounts==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Email Accounts&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Email Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify User|&#039;&#039;&#039;Modify User&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Account&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Catch All Account&#039;&#039;&#039; - this allows to get all emails with different spelling, but it will get lots of spam as well. So it is not recommended to set up this feature.&lt;br /&gt;
[[File:Email_Accounts.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Forwards==&lt;br /&gt;
*[[Media:QmailAdmin.AdminUser.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Forwards&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Forward Accounts window you can&lt;br /&gt;
**[[QmailAdmin Management#Modify Forward|&#039;&#039;&#039;Modify Forward&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Forwards.png|centre]]&lt;br /&gt;
&lt;br /&gt;
===Modify Forward===&lt;br /&gt;
*In the Modify Forward window you can&lt;br /&gt;
**&#039;&#039;&#039;Change Destination&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Forward&#039;&#039;&#039;&lt;br /&gt;
[[File:Modify_Forward.png|centre]]&lt;br /&gt;
&lt;br /&gt;
==Manage Mailing Lists==&lt;br /&gt;
*[[Media:QmailAdmin.MailingLists.mp4|Watch the Video]]&lt;br /&gt;
*On the main menu go to &#039;&#039;&#039;Mailing Lists&#039;&#039;&#039;&lt;br /&gt;
[[File:Main_menu.png|centre]]&lt;br /&gt;
*In the Mailing Lists window you can&lt;br /&gt;
**&#039;&#039;&#039;Delete Mailing List&#039;&#039;&#039;&lt;br /&gt;
**[[QmailAdmin Management#New Mailing List|&#039;&#039;&#039;Modify Mailing Lists&#039;&#039;&#039;]]&lt;br /&gt;
**&#039;&#039;&#039;Add Subdcriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Subscribers&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Moderator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Moderators&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Add Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Delete Digest Subscriber&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Show Digest Subscribers&#039;&#039;&#039;&lt;br /&gt;
[[File:Mailing Lists.png|centre]]&lt;/div&gt;</summary>
		<author><name>Bayan</name></author>
	</entry>
</feed>