exchange

Microsoft CRM Exchange Router

Can someone help me out by explaining to me at a high level the use for the MS CRM Exchange Router over/with the Outlook Client? I'm reading all this reference-style docs, but I just can't grok it. Anyone? Thanks. ...

powershell exchange 2003 : wmi-object does not pull all mailbox stores?

I have the following code pulling from my exchange server 2003. connect-qadservice -service 'localhost' foreach ($server in $exchangeservers) { $AllUsers += get-wmiobject -class Exchange_Mailbox -namespace Root\MicrosoftExchangeV2 -computername $server| select servername,storagegroupname, storename,mailboxdisplayname,...

How can I filter mailboxes that have never been logged on in Exchange Management Shell?

I need to run a Get-Mailbox | Get-MailboxStatistics command across a large number of mailboxes but the majority have never been used as it is a new install. As a result, I have to sit through hundreds of lines of WARNING: There is no data to return for the specified mailbox '<mailbox DN>' because it has not been logged on to. It woul...

how to read/update exchange 2007 calendars from MS Access

Hi, We have Exchange 2007 and have a need for quite complex group scheduling. Group scheduling is useless if the people invited do not see it in their Outlook Calendar of course. The data about when those appointments are to take place and who should be there live in an Excel or Access application. I bought the Microsoft book "Inside Mi...

BCC never sent from Exchange 2007 using SpecifiedPickupDirectory

I'm using an Exchange 2007 pickup directory to send emails from my ASP.NET application with System.Net.Mail.SmtpClient. Thus I'm using SmtpClient.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory. It sends emails fine, but then I noticed that BCC is not working at all. The file being placed in the pickup folder seems to have t...

Alternative to MS Exchange

Is there a good freeware/open source alternative to MS Exchange? Doesn't need to be windows dependant, it can be a linux-only sw. ...

Read MS Exchange email in C#

I need the ability to monitor for and read email from a particular mailbox on a MS Exchange Server (internal to my company). I also need to be able to read the sender's email address, subject, message body and download an attachment if any. What is the best way to do this using C# (or Vb.net)? ...

Microsoft Exchange CDOEX in a clustered environment.

We have a VS2005 native C++ application which connects to Exchange server using CDOEX and CDOEXM to create and modify calendar entries for multiple user folders. It's a command line utility which must be installed on the same server where the exchange server is installed. What is the correct procedure to use this utility in a clustered e...

Exchange Web Services - Updating Contact's Email Address

Hi, I am using EWS 2007 to update contacts in exchange 2007. I am unable to update contacts's email id in outlook. The Display as field shows the previous email Id. The issue I am facing is similar to the one described here - http://social.technet.microsoft.com/Forums/en-US/exchangesvrdevelopment/thread/d46d53a6-063f-4f65-85ab-a14ba7e7...

Connect to Exchange - Getting Started Tutorial ?

Hi, I need to connect to an Exchange-Server and to read some values, that a third party application stores there (BlackBerry Enterprise Server). In my understanding I need to use CDO with C++ (C# doesn't seem to work this well in this regard). Is that right? I tried searching a little, but there seems to be lot of different approaches...

Accessing Calendar Information from Exchange 2003 using c# .NET

I am trying to create a booking system in C#.NET that will store bookings within a MSQL database but also add the bookings to the exchange calendar of the relevant user. When a new appointment is created I want it to check the availabiity of users with their exchange calendars. If they are available it will book a date in the .NET syst...

Is there a Perl module to monitor an email queue?

I'm working on an issue tracking system and would like the application to handle email replies. That is, I would like a script that can monitor an email queue and perform some action based on the email contents. It should then be able to delete the email, etc. I currently use MIME::Lite to send email, and I can handle writing the scri...

Outlook Web Access Plugin Development

Has anybody written a plugin for outlook web access? Are there any resources to which you could point me or tips you can pass on? I'm probably more interested in OWA 2007 than 2003 but whatever you've got would be great. ...

What does this change I'm seeing in this cURL HTTP POST cookie response indicate?

Hi, I'm using cURL and php to query an exchange server that has Forms Based Authentication turned on. Due to FBA being on I need to collect a user's cookie authentication ids first. Yesterday everything was working: then something changed overnight and stopped working. I noticed that the cookie ids I was getting back were different (not ...

What ldap query returns the user objects now removed from active-directory?

Is there a ldap query that will return or list user objects that have been removed from the active-directory system? Must you track all the user objects currently in the active-directory, and maintain a "last seen" stamp in order to tell when a user object has been removed from the active-directory? ...

C# Powershell Interop

The Sys Admin guy is writing some common housekeeping Power Shell scripts. Predominantly for AD management (updating exchange details, moving people around security groups etc.) I'd like to use these scripts from C# (I intend to write it as a library, consumed by a web site). I've seen this code project article which looks interesting ...

Exchange 2007 master category list

We are constructing an application that will be interacting with Exchange 2007 calendar functions. We will be using the Outlook Redemption Objects dll’s. Our design relies upon the outlook 2007 meeting Category features. We would like to ensure that specific mailboxes have a standard set of category names and colors. We can’t rely...

Easiest way to programatically add aliases to Exchange 03/07 mailboxes?

Hi, We currently have a specific format for how our email addresses are defined, based upon name. This system originated some time ago and is beginning to become a bit of a hindrance. We would like to move to a new format, based along the line of <first name initial><second name initial><last name>@organisation.com However, we don...

Is the UID provided by MS Exchange POP3 UIDL command truly unique?

I'm using Net::POP3 in Perl to iterate through a mailbox on an MS Exchange server. I run the UIDL command on each message number and compare the ID returned to previously-seen IDs to see if I've dealt with this message in the past. However, I'm also finding that within an individual POP3 mailbox, the same UID seems to come up multiple ti...

Exchange WS 'The specified object was not found in the store.' error

Hi all, We're using Exchange 2007 WS to process mail folders and are hitting various problems if we try and forward a message we've already received. Our process is: Windows Service monitors mailbox folder, on finding a new mail we process the information and move the item to a 'Processed folder' and store the Exchange Message Id. Use...