Author |
|
wired Newbie
Joined: 22 March 2009
Online Status: Offline Posts: 2
|
Posted: 22 March 2009 at 12:06pm | IP Logged
|
|
|
I am building a ASP.net IMAP project to work with Exchange 2007. I need to be able to login to a mailbox with admin credentials.
If this is possible please reply. I have the project working on a one to one basis and just need to configure the admin creds to open the mailbox.
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 23 March 2009 at 5:04am | IP Logged
|
|
|
Please try to log into the same mailbox with admin credentials via another e-mail client like Outlook Express (not MS Office Outlook) or Mozilla Thunderbird. If it works fine, use the same credentials in your application powered by MailBee.NET IMAP Component.
Best regards,
Andrew
|
Back to Top |
|
|
wired Newbie
Joined: 22 March 2009
Online Status: Offline Posts: 2
|
Posted: 23 March 2009 at 2:32pm | IP Logged
|
|
|
The creds work. How do I select the other users mailbox?
Current working environment.
user: test@test.com
password: password
Inbox: test@test.com
Needed environment
user: Administrator
password: adminpass
Inbox: test@test.com
Is it as simple as set the folder variable to test@test.com/inbox?
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 24 March 2009 at 4:02am | IP Logged
|
|
|
To log into an IMAP account (like test@test.com), you should use Imap.Login method.
To select a mailbox (aka folder) in the account you're currently logged in, use Imap.SelectFolder.
IMAP protocol doesn't allow selecting folders (aka mailboxes) of another IMAP account without logging off and logging into that other account.
If you're able to log as Administrator/adminpass into your IMAP server and access mailboxes/folders of test@test.com account via another e-mail client (Outlook Express, Mozilla Thunderbird) through IMAP protocol (it's important to use IMAP, not proprietary Exchange protocol), please let us know which steps should be done to achieve that.
Best regards,
Andrew
|
Back to Top |
|
|