|
| ||||||||||
| Tags: email, imap, ms office, outlook 2003, outlook 2007, pop3, vba, visual basic |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How to set up an IMAP account in Outlook?
Along with it I am having many queries about the IMAP account, so I thought that posting here would be helpful for me instead of searching on Internet. Can someone over there can explain me that can I IMAP account with the existing personal folders to manage mine? I think that it is not possible. Because IMAP requires a completely different technical approach, these remain the two account types in Outlook strictly separated. A merger of these two folders is not possible. But then I am not sure about it. So I am expecting that you people will explain me all about this. But my main question is how to set up an IMAP account in Outlook? Also can I folder structure in Outlook start automatically expand to allow IMAP? I know there are lots of queries in this single post, but since all are related I thought to not to create new threads (maybe would be useless). Reply soon. |
|
#2
| |||
| |||
| Re: How to set up an IMAP account in Outlook?
If you are using Outlook 2000 in Corporate and Workgroup mode there is no possible use of IMAP. For Outlook 2002, Outlook 2003, the following steps should be followed for setting up an IMAP account:
|
|
#3
| |||
| |||
| Re: How to set up an IMAP account in Outlook? Quote:
|
|
#4
| ||||
| ||||
| Re: How to set up an IMAP account in Outlook?
It is also possible to account immediately as first displayed at startup to get the IMAP folders. Although you can use Tools >> Options >> More >> Advanced Options >> Startup in this folder the folder to determine the start as the first controlled to be set Outlook when the order of the personal folder hierarchy in the folder list (First Home Folder with POP3 accounts, then BCM, IMAP etc), however, can not live. Because of the restrictions that are subject to the MAPI, IMAP can only via e-mail folders. All other Outlook items (calendar, tasks, contacts, etc) can not integrate into Outlook. Outlook 2000, Outlook 2002, Outlook 2003: The folder for Sent Items, Drafts and Deleted Items may not be an IMAP server is stored on. Outlook requires that all special folders documents should be in standard. The IMAP server can act as a non-standard memory, since there special folders (non-mail folders) can not be saved. You can use a server-side Sent Items folder, however, simulate, by rule in the Rules Wizard to create one, all outgoing mail in the IMAP folder you copied:
|
|
#5
| |||
| |||
| Re: How to set up an IMAP account in Outlook?
IMAP supports specific folder structures from a POP3 account differ. You have the opportunity to offer each folder set for whether you want the server to manage this or not. Which folders are offered by default, IMAP hangs on the range of your provider. You subscribe to a specific folder by selecting it and press the Subscribe button. You can customize Outlook Today folder and choose the Inbox of your IMAP account's always leave. You will only receive a notification of new messages when you have a constant connection to the IMAP server have. If you dial-up connection to retrieve the e-mail messages from the IMAP store using a will, no audible signal output, the pointer changes its form, and the envelope icon does not appear in the taskbar. Hope that this post added some bit of knowledge. ![]() |
|
#6
| ||||
| ||||
| Re: How to set up an IMAP account in Outlook? Quote:
Code: Private Sub Application_Startup ()
Dim objFolder As Outlook.MAPIFolder
Dim As String strStartFolder
As Long Dim lngFolder
On Error Resume Next
'Startup folder set (eg Contacts, Inbox, Tasks, etc.)'
strStartFolder = "Outlook Today"
'Inbox folder Expand All'
For lngFolder = 1 To Outlook.Session.Folders.Count
Set objFolder = Outlook.Session.Folders (lngFolder). Folders ("Inbox")
Call Outlook.ActiveExplorer.SelectFolder (objFolder)
Next
'When the program starts select folder'
If strStartFolder = "Outlook Today" Then
Set objFolder = Outlook.Session.GetDefaultFolder (olFolderInbox). Parent
Else
Set objFolder = Outlook.Session.GetDefaultFolder (olFolderInbox). Parent.Folders (strStartFolder)
End If
Call Outlook.ActiveExplorer.SelectFolder (objFolder)
Set objFolder = Nothing
End Sub
|
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to set up an IMAP account in Outlook?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| IMAP account cannot delete - Outlook 03 crashes | Khushal | Windows Software | 5 | 21-01-2012 06:36 AM |
| Outlook 2010 Stuck During Send or Receive IMAP Account | dogaman | Technology & Internet | 5 | 27-11-2010 10:18 PM |
| Need Hotmail Imap account on iPhone | Visidon | Technology & Internet | 7 | 26-10-2010 07:43 PM |
| How to synchronize the subscribed folders with imap gmail account | Savious | Windows Software | 3 | 24-10-2010 07:06 AM |
| How to setup IMAP account on iPad | Gaganasindhu | Portable Devices | 4 | 01-10-2010 09:26 AM |