![]() |
Redemption and hiding user in exchange from address lists
Morning,
I am using redemption and vb.net to get new mail in a certain mailbox and save the attachments down to use. This all works successfully until i want to hide this specific user from all lists in exchange as i do not want people directly emailing this user. Does anyone know whether you have to have this unticked in exchange or is there a way around this problem?? Thanks |
Redemption and hiding user in exchange from address lists
Hide the user from what, the GAL? That has to be done by an admin in ADUC or
by ADSI or some other coding that hits ADUC on the server. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm wrote in message ups.com... Morning, I am using redemption and vb.net to get new mail in a certain mailbox and save the attachments down to use. This all works successfully until i want to hide this specific user from all lists in exchange as i do not want people directly emailing this user. Does anyone know whether you have to have this unticked in exchange or is there a way around this problem?? Thanks |
Redemption and hiding user in exchange from address lists
Hi there,
Yes I mean from the GAL. I ticked the box manually on the server and when i went to run the program again the program would not recogonise the mailbox to log into to. As soon as i took the tick out the "hide from exchange lists" it worked. Ken Slovak - [MVP - Outlook] wrote: Hide the user from what, the GAL? That has to be done by an admin in ADUC or by ADSI or some other coding that hits ADUC on the server. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm wrote in message ups.com... Morning, I am using redemption and vb.net to get new mail in a certain mailbox and save the attachments down to use. This all works successfully until i want to hide this specific user from all lists in exchange as i do not want people directly emailing this user. Does anyone know whether you have to have this unticked in exchange or is there a way around this problem?? Thanks |
Redemption and hiding user in exchange from address lists
So your problem is solved now? I couldn't tell from your reply.
-- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm wrote in message ps.com... Hi there, Yes I mean from the GAL. I ticked the box manually on the server and when i went to run the program again the program would not recogonise the mailbox to log into to. As soon as i took the tick out the "hide from exchange lists" it worked. |
Redemption and hiding user in exchange from address lists
Sorry must have not been very clear then. No my problem is not fixed,
well its more of a question really. Can you have a mailbox hidden from the GAL and still log into that mailbox using outlook redemption. Ken Slovak - [MVP - Outlook] wrote: So your problem is solved now? I couldn't tell from your reply. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm wrote in message ps.com... Hi there, Yes I mean from the GAL. I ticked the box manually on the server and when i went to run the program again the program would not recogonise the mailbox to log into to. As soon as i took the tick out the "hide from exchange lists" it worked. |
Redemption and hiding user in exchange from address lists
Yes, if you have the logon information you need and have permissions to log
into that mailbox. It doesn't need to be exposed to the GAL for that. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Aniallator" wrote in message oups.com... Sorry must have not been very clear then. No my problem is not fixed, well its more of a question really. Can you have a mailbox hidden from the GAL and still log into that mailbox using outlook redemption. |
Redemption and hiding user in exchange from address lists
Strictly speaking, if you know all the information about that mailbox (name,
entry id, e-mail, etc), you can construct the required profile manually. Redemption however takes the mailbox name as an argument to LogonExchangeMailbox, which it resolves against GAL. Since your mailbox is hidden from GAL, Redemption cannot resolve the name... Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Aniallator" wrote in message oups.com... Sorry must have not been very clear then. No my problem is not fixed, well its more of a question really. Can you have a mailbox hidden from the GAL and still log into that mailbox using outlook redemption. Ken Slovak - [MVP - Outlook] wrote: So your problem is solved now? I couldn't tell from your reply. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm wrote in message ps.com... Hi there, Yes I mean from the GAL. I ticked the box manually on the server and when i went to run the program again the program would not recogonise the mailbox to log into to. As soon as i took the tick out the "hide from exchange lists" it worked. |
Redemption and hiding user in exchange from address lists
Thanks for the advice. Could you possibly give me an example of how to
construct the profile manually?? would be greatly appreciated. Thanks Dmitry Streblechenko wrote: Strictly speaking, if you know all the information about that mailbox (name, entry id, e-mail, etc), you can construct the required profile manually. Redemption however takes the mailbox name as an argument to LogonExchangeMailbox, which it resolves against GAL. Since your mailbox is hidden from GAL, Redemption cannot resolve the name... Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Aniallator" wrote in message oups.com... Sorry must have not been very clear then. No my problem is not fixed, well its more of a question really. Can you have a mailbox hidden from the GAL and still log into that mailbox using outlook redemption. Ken Slovak - [MVP - Outlook] wrote: So your problem is solved now? I couldn't tell from your reply. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm wrote in message ps.com... Hi there, Yes I mean from the GAL. I ticked the box manually on the server and when i went to run the program again the program would not recogonise the mailbox to log into to. As soon as i took the tick out the "hide from exchange lists" it worked. |
Redemption and hiding user in exchange from address lists
You would need to populate all the properties set by the EX provider - look
at the profile data with ProfMan (http://support.microsoft.com/?kbid=228736) or OutlookSpy. Most of these properties are not documented of course. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Aniallator" wrote in message oups.com... Thanks for the advice. Could you possibly give me an example of how to construct the profile manually?? would be greatly appreciated. Thanks Dmitry Streblechenko wrote: Strictly speaking, if you know all the information about that mailbox (name, entry id, e-mail, etc), you can construct the required profile manually. Redemption however takes the mailbox name as an argument to LogonExchangeMailbox, which it resolves against GAL. Since your mailbox is hidden from GAL, Redemption cannot resolve the name... Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Aniallator" wrote in message oups.com... Sorry must have not been very clear then. No my problem is not fixed, well its more of a question really. Can you have a mailbox hidden from the GAL and still log into that mailbox using outlook redemption. Ken Slovak - [MVP - Outlook] wrote: So your problem is solved now? I couldn't tell from your reply. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm wrote in message ps.com... Hi there, Yes I mean from the GAL. I ticked the box manually on the server and when i went to run the program again the program would not recogonise the mailbox to log into to. As soon as i took the tick out the "hide from exchange lists" it worked. |
All times are GMT +1. The time now is 08:59 PM. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com