<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.xmission.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nibilik</id>
	<title>XMission Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.xmission.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nibilik"/>
	<link rel="alternate" type="text/html" href="https://wiki.xmission.com/Special:Contributions/Nibilik"/>
	<updated>2026-04-11T08:57:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Juniper&amp;diff=7475</id>
		<title>Juniper</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Juniper&amp;diff=7475"/>
		<updated>2016-04-01T17:42:27Z</updated>

		<summary type="html">&lt;p&gt;Nibilik: /* Juniper PPPoE Proceedure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Juniper PPPoE Proceedure===&lt;br /&gt;
&lt;br /&gt;
Juniper users a hierarchical configuration and the PPPoE settings fall under the interfaces section. In this example we will be using the fast ethernet port 0/0/1 for the WAN interface and the final configuration will look like:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
interfaces {&lt;br /&gt;
    fe-0/0/1 {&lt;br /&gt;
        unit 0 {&lt;br /&gt;
            encapsulation ppp-over-ether;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    pp0 {&lt;br /&gt;
        unit 0 {&lt;br /&gt;
            ppp-options {&lt;br /&gt;
                pap {&lt;br /&gt;
                    local-password &amp;quot;dkwoxslxqpz&amp;quot;;##SECRET-DATA&lt;br /&gt;
                    local-name &amp;quot;username&amp;quot;;&lt;br /&gt;
                    passive;&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
            pppoe-options {&lt;br /&gt;
                underlying-interface fe-0/0/1.0;&lt;br /&gt;
                auto-reconnect 10;&lt;br /&gt;
                client;&lt;br /&gt;
                idle-timeout 0;&lt;br /&gt;
            }&lt;br /&gt;
            family inet {&lt;br /&gt;
                negotiate-address;&lt;br /&gt;
                mtu 1492;&lt;br /&gt;
            }&lt;br /&gt;
            family inet6 {&lt;br /&gt;
                mtu 1492;&lt;br /&gt;
                dhcpv6-client {&lt;br /&gt;
                    client-type statefull;&lt;br /&gt;
                    client-ia-type ia-pd;&lt;br /&gt;
                    client-ia-type ia-na;&lt;br /&gt;
                    update-router-advertisement {&lt;br /&gt;
                        interface pp0.0;&lt;br /&gt;
                    }&lt;br /&gt;
                    client-identifier duid-type duid-ll;&lt;br /&gt;
                    req-option domain;&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
security {&lt;br /&gt;
    flow {&lt;br /&gt;
        tcp-mss {&lt;br /&gt;
            all-tcp {&lt;br /&gt;
                mss 1452;&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Below is a walk through on what commands to enter:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You will want to ssh / telnet to the router and be at the CLI (command line interface):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- JUNOS 11.4xxxx built 2011-05-15 22:21:00 UTC&lt;br /&gt;
{master}&lt;br /&gt;
user@router&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We will need to be in the edit mode at this point:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
user@router&amp;gt;edit&lt;br /&gt;
&lt;br /&gt;
Entering configuration mode&lt;br /&gt;
Users currently editing the configuration:&lt;br /&gt;
{master}[edit]&lt;br /&gt;
user@router#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we will want to set the interface FastEthernet 0/0/1 to use PPPoE encapsulation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
user@router#edit interfaces fe-0/0/1 unit 0&lt;br /&gt;
&lt;br /&gt;
{master}[edit interfaces fe-0/0/1 unit 0]&lt;br /&gt;
user@router#set encapsulation ppp-over-ether;&lt;br /&gt;
user@router#exit&lt;br /&gt;
&lt;br /&gt;
{master}[edit]&lt;br /&gt;
user@router#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next we will want to edit the ppp pap options pp0 interface:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
user@router#edit interfaces pp0 unit 0 ppp-options pap&lt;br /&gt;
&lt;br /&gt;
{master}[edit interfaces pp0 unit 0 ppp-options pap]&lt;br /&gt;
user@router#set access-profile ppp-profile&lt;br /&gt;
user@router#set local-password &amp;quot;xmission password&amp;quot;&lt;br /&gt;
user@router#set local-name &amp;quot;xmission username&amp;quot;&lt;br /&gt;
user@router#set passive&lt;br /&gt;
user@router#exit&lt;br /&gt;
&lt;br /&gt;
{master}&lt;br /&gt;
user@router#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we will want to configure the pppoe options:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
user@router#edit interfaces pp0 unit 0 pppoe-options&lt;br /&gt;
&lt;br /&gt;
{master}[edit interfaces pp0 unit 0 pppoe-options]&lt;br /&gt;
user@router#set underlying-interface fe-0/0/1.0&lt;br /&gt;
user@router#set auto-reconnect 10&lt;br /&gt;
user@router#set client&lt;br /&gt;
user@router#set idle-timeout 0&lt;br /&gt;
user@router#exit&lt;br /&gt;
&lt;br /&gt;
{master}&lt;br /&gt;
user@router#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Last we will want to set the ip address, in this example we will use auto negotiate:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
user@router#edit interfaces pp0 unit 0 family-inet&lt;br /&gt;
&lt;br /&gt;
{master}[edit interfaces pp0 unit 0 family-inet]&lt;br /&gt;
user@router#set negotiate-address&lt;br /&gt;
user@router#set mtu 1492&lt;br /&gt;
user@router#exit&lt;br /&gt;
&lt;br /&gt;
{master}&lt;br /&gt;
user@router#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you have ipv6 use the following&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
user@router#edit interfaces pp0 unit 0 family inet6&lt;br /&gt;
&lt;br /&gt;
{master}[edit interfaces pp0 unit 0 family inet6]&lt;br /&gt;
user@router#set mtu 1492&lt;br /&gt;
user@router#set dhcpv6-client client-type statefull&lt;br /&gt;
user@router#set dhcpv6-client client-ia-type ia-pd&lt;br /&gt;
user@router#set dhcpv6-client client-ia-type ia-nd&lt;br /&gt;
user@router#set dhcpv6-client update-router-advertisement interface pp0.0&lt;br /&gt;
user@router#set dhcpv6-client client-identifier duid-type duid-ll&lt;br /&gt;
user@router#set dhcpv6-client req-option domain&lt;br /&gt;
user@router#exit&lt;br /&gt;
&lt;br /&gt;
{master}&lt;br /&gt;
user@router#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Commit these changes and exit edit mode.&lt;br /&gt;
&lt;br /&gt;
[[Category:UTOPIA Troubleshooting|Juniper]]&lt;br /&gt;
[[Category:UTOPIA]]&lt;br /&gt;
[[Category:PPPoE]]&lt;/div&gt;</summary>
		<author><name>Nibilik</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Rewriting_with_.htaccess&amp;diff=4257</id>
		<title>Rewriting with .htaccess</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Rewriting_with_.htaccess&amp;diff=4257"/>
		<updated>2012-06-15T16:25:53Z</updated>

		<summary type="html">&lt;p&gt;Nibilik: Created page with &amp;#039;You can create your own rewrites for domains with an .htaccess file. Some of the most common rewrites are:  Point an entire site to a different URL, such as domain.net redirected…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can create your own rewrites for domains with an .htaccess file. Some of the most common rewrites are:&lt;br /&gt;
&lt;br /&gt;
Point an entire site to a different URL, such as domain.net redirected to domain.com:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This allows you to redirect your entire website to any other domain&lt;br /&gt;
Redirect 301 / http://example.com/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Redirect index.html to a specific subfolder:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This allows you to redirect index.html to a specific subfolder&lt;br /&gt;
Redirect /index.html http://example.com/newdirectory/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Redirect an old file to a new file path:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Redirect old file path to new file path&lt;br /&gt;
Redirect /olddirectory/oldfile.html http://example.com/newdirectory/newfile.html&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Redirect to a specific index page:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Provide Specific Index Page (Set the default handler)&lt;br /&gt;
DirectoryIndex index.html&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nibilik</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3961</id>
		<title>XMission Email:iPhone iOS5</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3961"/>
		<updated>2011-11-10T16:58:59Z</updated>

		<summary type="html">&lt;p&gt;Nibilik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==XMission Email on your iPhone iOS5==&lt;br /&gt;
&lt;br /&gt;
This setup applies to iPhone iOS versions 5.0 and beyond&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Press the [[Image:iphone-home-button.png]] &#039;&#039;&#039;home button&#039;&#039;&#039;, tap on the [[Image:Ip2.jpg]] &#039;&#039;&#039;Settings&#039;&#039;&#039; icon and then tap on the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; option. &lt;br /&gt;
:[[Image:ios3-home.png]] [[Image:ios3-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Tap &#039;&#039;&#039;Add Account&#039;&#039;&#039;. Under the Add Account menu, tap &#039;&#039;&#039;Other&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-mailcontactscals.png]] [[Image:ios3-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Tap in your account information. Your &#039;&#039;&#039;Name&#039;&#039;&#039;, your &#039;&#039;&#039;Address&#039;&#039;&#039;(email address) and your &#039;&#039;&#039;Password&#039;&#039;&#039;. Set &#039;&#039;&#039;Description&#039;&#039;&#039; to &#039;&#039;&#039;XMission&#039;&#039;&#039;. When you&#039;re done, tap &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will go to the next step.&lt;br /&gt;
:[[Image:ios3-xmission-newacct-enter.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. The next stage will present you with a &#039;&#039;&#039;New Account&#039;&#039;&#039; information page, with &#039;&#039;&#039;IMAP&#039;&#039;&#039; highlighted.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Incoming Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-incoming.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-outgoing.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Tap on &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will return to the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; settings screen.  &lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-mailcontactscals-saved.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
8. Tap on &#039;&#039;&#039;XMission (Mail)&#039;&#039;&#039; under &#039;&#039;&#039;Accounts&#039;&#039;&#039; and you should see your setup summarized.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-email.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9. Tap on &#039;&#039;&#039;SMTP   mail.xmission.com &amp;gt;&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; then &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039; under &#039;&#039;&#039;Primary Server&#039;&#039;&#039;.   Ensure the &#039;&#039;&#039;Server&#039;&#039;&#039; switch is &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 465.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-smtp.png]]  [[Image:ios3-xmission-smtp-settings.png]]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. Tap the back arrows in the upper left hand corner to return to the screen presented above in Step #8.  Tap the &#039;&#039;&#039;Advanced&#039;&#039;&#039; button at the bottom above &#039;&#039;&#039;Delete Account&#039;&#039;&#039;.  The &#039;&#039;&#039;Advanced&#039;&#039;&#039; Settings should have &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 993.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-advanced.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
12. If you use any other email software, make certain that the folders set in Step #11 agree, otherwise you will end up with multiple folders with the same purpose.  These folder names are sensitive to case.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That&#039;s it! Now press [[Image:iphone-home-button.png]] home, tap on the [[Image:Mail_icon.jpg]] mail icon and you should now be able to send and receive email from your iPhone! You can send a test message to support@xmission.com and you should get an automatic reply.&lt;br /&gt;
&lt;br /&gt;
[[Category:XMission Email]]&lt;br /&gt;
[[Category:IPhone]]&lt;/div&gt;</summary>
		<author><name>Nibilik</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3960</id>
		<title>XMission Email:iPhone iOS5</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3960"/>
		<updated>2011-11-10T16:45:33Z</updated>

		<summary type="html">&lt;p&gt;Nibilik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==XMission Email on your iPhone iOS5==&lt;br /&gt;
&lt;br /&gt;
This setup applies to iPhone iOS versions 5.0 and beyond&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Press the [[Image:iphone-home-button.png]] &#039;&#039;&#039;home button&#039;&#039;&#039;, tap on the [[Image:Ip2.jpg]] &#039;&#039;&#039;Settings&#039;&#039;&#039; icon and then tap on the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; option. &lt;br /&gt;
:[[Image:ios3-home.png]] [[Image:ios3-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Tap &#039;&#039;&#039;Add Account&#039;&#039;&#039;. Under the Add Account menu, tap &#039;&#039;&#039;Other&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-mailcontactscals.png]] [[Image:ios3-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Tap in your account information. Your &#039;&#039;&#039;Name&#039;&#039;&#039;, your &#039;&#039;&#039;Address&#039;&#039;&#039;(email address) and your &#039;&#039;&#039;Password&#039;&#039;&#039;. Set &#039;&#039;&#039;Description&#039;&#039;&#039; to &#039;&#039;&#039;XMission&#039;&#039;&#039;. When you&#039;re done, tap &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will go to the next step.&lt;br /&gt;
:[[Image:ios3-xmission-newacct-enter.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. The next stage will present you with a &#039;&#039;&#039;New Account&#039;&#039;&#039; information page, with &#039;&#039;&#039;IMAP&#039;&#039;&#039; highlighted.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Incoming Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-incoming.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-outgoing.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Tap on &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will return to the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; settings screen.  &lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-mailcontactscals-saved.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
8. Tap on &#039;&#039;&#039;XMission (Mail)&#039;&#039;&#039; under &#039;&#039;&#039;Accounts&#039;&#039;&#039; and you should see your setup summarized.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-email.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9. Tap on &#039;&#039;&#039;SMTP   mail.xmission.com &amp;gt;&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; then &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039; under &#039;&#039;&#039;Primary Server&#039;&#039;&#039;.   Ensure the &#039;&#039;&#039;Server&#039;&#039;&#039; switch is &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 465.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-smtp.png]]  [[Image:ios3-xmission-smtp-settings.png]]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. Tap the back arrows in the upper left hand corner to return to the screen presented above in Step #8.  Tap the &#039;&#039;&#039;Advanced&#039;&#039;&#039; button at the bottom above &#039;&#039;&#039;Delete Account&#039;&#039;&#039;.  The &#039;&#039;&#039;Advanced&#039;&#039;&#039; Settings should have &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 993.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-advanced.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. Tap the bars for &#039;&#039;&#039;Drafts Mailbox&#039;&#039;&#039;, &#039;&#039;&#039;Sent Mailbox&#039;&#039;&#039;, and &#039;&#039;&#039;Deleted Mailbox&#039;&#039;&#039; and set them respectively to &#039;&#039;&#039;drafts&#039;&#039;&#039;, &#039;&#039;&#039;sent-mail&#039;&#039;&#039;, and &#039;&#039;&#039;trash&#039;&#039;&#039; all &#039;&#039;&#039;On the Server&#039;&#039;&#039;.  You will probably have to check your email once with the &#039;&#039;&#039;Mail&#039;&#039;&#039; app for these &#039;&#039;&#039;On the Server&#039;&#039;&#039; folders to appear.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-drafts.png]] [[Image:ios3-xmission-sent.png]] [[Image:ios3-xmission-trash.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
12. If you use any other email software, make certain that the folders set in Step #11 agree, otherwise you will end up with multiple folders with the same purpose.  These folder names are sensitive to case.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That&#039;s it! Now press [[Image:iphone-home-button.png]] home, tap on the [[Image:Mail_icon.jpg]] mail icon and you should now be able to send and receive email from your iPhone! You can send a test message to support@xmission.com and you should get an automatic reply.&lt;br /&gt;
&lt;br /&gt;
[[Category:XMission Email]]&lt;br /&gt;
[[Category:IPhone]]&lt;/div&gt;</summary>
		<author><name>Nibilik</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3959</id>
		<title>XMission Email:iPhone iOS5</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3959"/>
		<updated>2011-11-10T16:45:19Z</updated>

		<summary type="html">&lt;p&gt;Nibilik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==XMission Email on your iPhone iOS3==&lt;br /&gt;
&lt;br /&gt;
This setup applies to iPhone iOS versions 5.0 and beyond&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Press the [[Image:iphone-home-button.png]] &#039;&#039;&#039;home button&#039;&#039;&#039;, tap on the [[Image:Ip2.jpg]] &#039;&#039;&#039;Settings&#039;&#039;&#039; icon and then tap on the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; option. &lt;br /&gt;
:[[Image:ios3-home.png]] [[Image:ios3-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Tap &#039;&#039;&#039;Add Account&#039;&#039;&#039;. Under the Add Account menu, tap &#039;&#039;&#039;Other&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-mailcontactscals.png]] [[Image:ios3-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Tap in your account information. Your &#039;&#039;&#039;Name&#039;&#039;&#039;, your &#039;&#039;&#039;Address&#039;&#039;&#039;(email address) and your &#039;&#039;&#039;Password&#039;&#039;&#039;. Set &#039;&#039;&#039;Description&#039;&#039;&#039; to &#039;&#039;&#039;XMission&#039;&#039;&#039;. When you&#039;re done, tap &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will go to the next step.&lt;br /&gt;
:[[Image:ios3-xmission-newacct-enter.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. The next stage will present you with a &#039;&#039;&#039;New Account&#039;&#039;&#039; information page, with &#039;&#039;&#039;IMAP&#039;&#039;&#039; highlighted.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Incoming Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-incoming.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-outgoing.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Tap on &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will return to the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; settings screen.  &lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-mailcontactscals-saved.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
8. Tap on &#039;&#039;&#039;XMission (Mail)&#039;&#039;&#039; under &#039;&#039;&#039;Accounts&#039;&#039;&#039; and you should see your setup summarized.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-email.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9. Tap on &#039;&#039;&#039;SMTP   mail.xmission.com &amp;gt;&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; then &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039; under &#039;&#039;&#039;Primary Server&#039;&#039;&#039;.   Ensure the &#039;&#039;&#039;Server&#039;&#039;&#039; switch is &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 465.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-smtp.png]]  [[Image:ios3-xmission-smtp-settings.png]]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. Tap the back arrows in the upper left hand corner to return to the screen presented above in Step #8.  Tap the &#039;&#039;&#039;Advanced&#039;&#039;&#039; button at the bottom above &#039;&#039;&#039;Delete Account&#039;&#039;&#039;.  The &#039;&#039;&#039;Advanced&#039;&#039;&#039; Settings should have &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 993.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-advanced.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. Tap the bars for &#039;&#039;&#039;Drafts Mailbox&#039;&#039;&#039;, &#039;&#039;&#039;Sent Mailbox&#039;&#039;&#039;, and &#039;&#039;&#039;Deleted Mailbox&#039;&#039;&#039; and set them respectively to &#039;&#039;&#039;drafts&#039;&#039;&#039;, &#039;&#039;&#039;sent-mail&#039;&#039;&#039;, and &#039;&#039;&#039;trash&#039;&#039;&#039; all &#039;&#039;&#039;On the Server&#039;&#039;&#039;.  You will probably have to check your email once with the &#039;&#039;&#039;Mail&#039;&#039;&#039; app for these &#039;&#039;&#039;On the Server&#039;&#039;&#039; folders to appear.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-drafts.png]] [[Image:ios3-xmission-sent.png]] [[Image:ios3-xmission-trash.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
12. If you use any other email software, make certain that the folders set in Step #11 agree, otherwise you will end up with multiple folders with the same purpose.  These folder names are sensitive to case.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That&#039;s it! Now press [[Image:iphone-home-button.png]] home, tap on the [[Image:Mail_icon.jpg]] mail icon and you should now be able to send and receive email from your iPhone! You can send a test message to support@xmission.com and you should get an automatic reply.&lt;br /&gt;
&lt;br /&gt;
[[Category:XMission Email]]&lt;br /&gt;
[[Category:IPhone]]&lt;/div&gt;</summary>
		<author><name>Nibilik</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3958</id>
		<title>XMission Email:iPhone iOS5</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3958"/>
		<updated>2011-11-10T16:43:42Z</updated>

		<summary type="html">&lt;p&gt;Nibilik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==XMission Email on your iPhone iOS3==&lt;br /&gt;
&lt;br /&gt;
This setup applies to iPhone iOS versions 5.0 and beyond&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Press the [[Image:iphone-home-button.png]] &#039;&#039;&#039;home button&#039;&#039;&#039;, tap on the [[Image:Ip2.jpg]] &#039;&#039;&#039;Settings&#039;&#039;&#039; icon and then tap on the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; option. &lt;br /&gt;
:[[Image:ios3-home.png]] [[Image:ios3-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Tap &#039;&#039;&#039;Add Account&#039;&#039;&#039;. Under the Add Account menu, tap &#039;&#039;&#039;Other&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-mailcontactscals.png]] [[Image:ios3-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Tap in your account information. Your &#039;&#039;&#039;Name&#039;&#039;&#039;, your &#039;&#039;&#039;Address&#039;&#039;&#039;(email address) and your &#039;&#039;&#039;Password&#039;&#039;&#039;. Set &#039;&#039;&#039;Description&#039;&#039;&#039; to &#039;&#039;&#039;XMission&#039;&#039;&#039;. When you&#039;re done, tap &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will go to the next step.&lt;br /&gt;
:[[Image:ios3-xmission-newacct-enter.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. The next stage will present you with a &#039;&#039;&#039;New Account&#039;&#039;&#039; information page, with &#039;&#039;&#039;IMAP&#039;&#039;&#039; highlighted.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Incoming Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-incoming.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-outgoing.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Tap on &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will return to the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; settings screen.  &lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-mailcontactscals-saved.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
8. Tap on &#039;&#039;&#039;XMission (Mail)&#039;&#039;&#039; under &#039;&#039;&#039;Accounts&#039;&#039;&#039; and you should see your setup summarized.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-email.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9. Tap on &#039;&#039;&#039;SMTP   mail.xmission.com &amp;gt;&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; then &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039; under &#039;&#039;&#039;Primary Server&#039;&#039;&#039;.   Ensure the &#039;&#039;&#039;Server&#039;&#039;&#039; switch is &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 465.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-smtp.png]]  [[Image:ios3-xmission-smtp-settings.png]]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. Tap the back arrows in the upper left hand corner to return to the screen presented above in Step #8.  Tap the &#039;&#039;&#039;Advanced&#039;&#039;&#039; button at the bottom above &#039;&#039;&#039;Delete Account&#039;&#039;&#039;.  The &#039;&#039;&#039;Advanced&#039;&#039;&#039; Settings should have &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 993.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-advanced.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. Tap the bars for &#039;&#039;&#039;Drafts Mailbox&#039;&#039;&#039;, &#039;&#039;&#039;Sent Mailbox&#039;&#039;&#039;, and &#039;&#039;&#039;Deleted Mailbox&#039;&#039;&#039; and set them respectively to &#039;&#039;&#039;drafts&#039;&#039;&#039;, &#039;&#039;&#039;sent-mail&#039;&#039;&#039;, and &#039;&#039;&#039;trash&#039;&#039;&#039; all &#039;&#039;&#039;On the Server&#039;&#039;&#039;.  You will probably have to check your email once with the &#039;&#039;&#039;Mail&#039;&#039;&#039; app for these &#039;&#039;&#039;On the Server&#039;&#039;&#039; folders to appear.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-drafts.png]] [[Image:ios3-xmission-sent.png]] [[Image:ios3-xmission-trash.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
12. If you use any other email software, make certain that the folders set in Step #11 agree, otherwise you will end up with multiple folders with the same purpose.  These folder names are sensitive to case.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That&#039;s it! Now press [[Image:iphone-home-button.png]] home, tap on the [[Image:Mail_icon.jpg]] mail icon and you should now be able to send and receive email from your iPhone! You can send a test message to support@xmission.com and you should get an automatic reply.&lt;br /&gt;
&lt;br /&gt;
[[Category:XMission Email]]&lt;br /&gt;
[[Category:IPhone]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;flvplayertwo height=&amp;quot;505&amp;quot; width=&amp;quot;320&amp;quot; autoplay=&amp;quot;false&amp;quot;&amp;gt;Iphone.flv&amp;lt;/flvplayertwo&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nibilik</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3957</id>
		<title>XMission Email:iPhone iOS5</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Email:iPhone_iOS5&amp;diff=3957"/>
		<updated>2011-11-10T16:36:33Z</updated>

		<summary type="html">&lt;p&gt;Nibilik: Created page with &amp;#039;==XMission Email on your iPhone iOS3==  This setup applies to iPhone iOS versions 3.0 through 3.1.3.   1. Press the Image:iphone-home-button.png &amp;#039;&amp;#039;&amp;#039;home button&amp;#039;&amp;#039;&amp;#039;, tap on the…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==XMission Email on your iPhone iOS3==&lt;br /&gt;
&lt;br /&gt;
This setup applies to iPhone iOS versions 3.0 through 3.1.3.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Press the [[Image:iphone-home-button.png]] &#039;&#039;&#039;home button&#039;&#039;&#039;, tap on the [[Image:Ip2.jpg]] &#039;&#039;&#039;Settings&#039;&#039;&#039; icon and then tap on the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; option. &lt;br /&gt;
:[[Image:ios3-home.png]] [[Image:ios3-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Tap &#039;&#039;&#039;Add Account&#039;&#039;&#039;. Under the Add Account menu, tap &#039;&#039;&#039;Other&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-mailcontactscals.png]] [[Image:ios3-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Tap in your account information. Your &#039;&#039;&#039;Name&#039;&#039;&#039;, your &#039;&#039;&#039;Address&#039;&#039;&#039;(email address) and your &#039;&#039;&#039;Password&#039;&#039;&#039;. Set &#039;&#039;&#039;Description&#039;&#039;&#039; to &#039;&#039;&#039;XMission&#039;&#039;&#039;. When you&#039;re done, tap &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will go to the next step.&lt;br /&gt;
:[[Image:ios3-xmission-newacct-enter.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. The next stage will present you with a &#039;&#039;&#039;New Account&#039;&#039;&#039; information page, with &#039;&#039;&#039;IMAP&#039;&#039;&#039; highlighted.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Incoming Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-incoming.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Tap on &#039;&#039;&#039;Host Name&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; and enter &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039;.  Put just your user name portion of your email address (without @xmission.com) in &#039;&#039;&#039;User Name&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-new-account-outgoing.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Tap on &#039;&#039;&#039;Save&#039;&#039;&#039; and the phone will return to the &#039;&#039;&#039;Mail, Contacts, Calendars&#039;&#039;&#039; settings screen.  &lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-mailcontactscals-saved.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
8. Tap on &#039;&#039;&#039;XMission (Mail)&#039;&#039;&#039; under &#039;&#039;&#039;Accounts&#039;&#039;&#039; and you should see your setup summarized.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-email.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9. Tap on &#039;&#039;&#039;SMTP   mail.xmission.com &amp;gt;&#039;&#039;&#039; under &#039;&#039;&#039;Outgoing Mail Server&#039;&#039;&#039; then &#039;&#039;&#039;mail.xmission.com&#039;&#039;&#039; under &#039;&#039;&#039;Primary Server&#039;&#039;&#039;.   Ensure the &#039;&#039;&#039;Server&#039;&#039;&#039; switch is &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 465.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-smtp.png]]  [[Image:ios3-xmission-smtp-settings.png]]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. Tap the back arrows in the upper left hand corner to return to the screen presented above in Step #8.  Tap the &#039;&#039;&#039;Advanced&#039;&#039;&#039; button at the bottom above &#039;&#039;&#039;Delete Account&#039;&#039;&#039;.  The &#039;&#039;&#039;Advanced&#039;&#039;&#039; Settings should have &#039;&#039;&#039;Use SSL&#039;&#039;&#039; switched &#039;&#039;&#039;On&#039;&#039;&#039;, &#039;&#039;&#039;Authentication&#039;&#039;&#039; is &#039;&#039;&#039;Password&#039;&#039;&#039;, and the &#039;&#039;&#039;Server Port&#039;&#039;&#039; is set to 993.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-advanced.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. Tap the bars for &#039;&#039;&#039;Drafts Mailbox&#039;&#039;&#039;, &#039;&#039;&#039;Sent Mailbox&#039;&#039;&#039;, and &#039;&#039;&#039;Deleted Mailbox&#039;&#039;&#039; and set them respectively to &#039;&#039;&#039;drafts&#039;&#039;&#039;, &#039;&#039;&#039;sent-mail&#039;&#039;&#039;, and &#039;&#039;&#039;trash&#039;&#039;&#039; all &#039;&#039;&#039;On the Server&#039;&#039;&#039;.  You will probably have to check your email once with the &#039;&#039;&#039;Mail&#039;&#039;&#039; app for these &#039;&#039;&#039;On the Server&#039;&#039;&#039; folders to appear.&lt;br /&gt;
&lt;br /&gt;
:[[Image:ios3-xmission-drafts.png]] [[Image:ios3-xmission-sent.png]] [[Image:ios3-xmission-trash.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
12. If you use any other email software, make certain that the folders set in Step #11 agree, otherwise you will end up with multiple folders with the same purpose.  These folder names are sensitive to case.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That&#039;s it! Now press [[Image:iphone-home-button.png]] home, tap on the [[Image:Mail_icon.jpg]] mail icon and you should now be able to send and receive email from your iPhone! You can send a test message to support@xmission.com and you should get an automatic reply.&lt;br /&gt;
&lt;br /&gt;
[[Category:XMission Email]]&lt;br /&gt;
[[Category:IPhone]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;flvplayertwo height=&amp;quot;505&amp;quot; width=&amp;quot;320&amp;quot; autoplay=&amp;quot;false&amp;quot;&amp;gt;Iphone.flv&amp;lt;/flvplayertwo&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nibilik</name></author>
	</entry>
</feed>