exchange

Python: how to store a draft email with BCC recipients to Exchange Server via IMAP?

I try to store a draft e-mail via IMAP to a folder running on MS Exchange. Everything ok, except that Bcc recipients don't get shown in the draft message stored on the server. Bcc recipients also don't receive the email if I send it with MS Outlook. If I read the message back with Python after I have stored it on the server, I can see th...

Set-transport rule works on powershell but fails when using web interface

I have a powershell script that modifies transport rules. It works perfectly from powershell and I want to create a web interface so non-tech bods can edit transport rules (specifically, redirections) but when I try and run it from a .net website, the set-transportrule command seems to be ignored. The script is: $rule = "Redirect -> " +...

Customizing Outlook and Exchange to add new fields to meetings + querying from Exchange from custom app, is this possible ?

Hi, Is it possible to customize the window used in Outlook to type in meetings (calendar tab) to add new fields to it ? That data would be stored in Exchange, then queried by another app that would do something with it. My problem is to see how I could affect the meeting edit dialog as it is now, to add my new fields. Any ideas ? ...

How to delay the dispatch of an e-mail? Click button to send NOW but wait until 6.00pm until the email gets actually sent.

I have a php script that does some processing (creates remittance advice PDFs, self-billing invoices, Sage CSV file etc...) and at the end outputs a screen with a form, in which the names and e-mail addresses of the people paid appear. User makes a selection of names by clicking check boxes and then there is a Send button which sends out...

What's the difference between "Exchange Legacy Distinguished Name" and "Active Directory Distingushed Name"?

I'm a little confused by these two terms: "Legacy Distinguished Name"(Legacy DN) and "Distingushed Name"(DN). The first term Legacy DN seems only for Exchange, while the latter DN is only mentioned for Active Directory. They are obviously not in same format: DN is like: CN=Morgan Cheng, OU= SomeOrg, DC=SomeCom, DC=com LegacyDN is lik...

C# opening up a blank email with an attachment using Exchange

Hey there I'm new to the world of C# programming but was hoping someone could help me out. I'm trying to use C# to open up a blank email in Outlook with a specified attachment. In other words, open the email, the TO: and SUBJECT: fields are blank but the email has an attachment that is specified in my code. I want my user to be able t...

How can you access a secondary calendar with cfexchangeconnection?

I have an exchange account with multiple calendars defined. Is it possible to query a secondary calendar with cfexchangeconnection? Here's the code that I use to get the primary calendar, but I don't see any options in CF8 to talk to the secondary calendar "AltCal" in my profile. <cfexchangeConnection action="open" username="#theuserna...

Sharepoint deployment with Exchange 2007

I am planning to deploy a single-server Exchange 2007 configuration and I'd like to also start using Sharepoint for collaboration - what would the recommended deployment scenario be to accomplish this [Sharepoint will also run on its own server] to allow use of OWA + Sharepoint sites both as public resources as well as common space for d...

How to stop Exchange from automatically converting plain text emails to HTML?

I've set up an Exchange 2003 mailbox for emails that will be parsed by my code. The emails are sent as plain text and my code expects to receive them as plain text. However, it appears that Exchange is automatically converting them to HTML. How do I stop it from doing that and just receive the email the way it was sent? The reason I bel...

Access exchange e-mail in C#

Do you know if there's a way? I've used this library to access a pop3 server, but it doesn't work with an exchange server. Do you know of any other library or piece of code that'll show me how to do it? I cannot change any settings on the server. ...

WebDAV vs. SDK for accessing the Exchange 2003 calendar

I'm trying to figure out how to access the calendar of Exchange 2003 from a remotely hosted ASP.NET/C# page (I only need to read and display calendar appointments/meetings etc.). As I understand it, I'm mainly down to two options - using WebDAV or the Exchange SDK. I have found some good examples of how to use WebDAV, although I've not ...

Create a mailbox for an user via webservice on a remote exchange 2007 server. (C#)

EDIT ive got it almost, having and error message now that it can't find the exchange DB. I'm running the service on a different server then Exchange so I presume I have to use an UNC path. MyServer01\First Storage Group\Mailbox Database.edb does not work though... Hi! I'm getting frustrated here, feeling a massive headache coming up a...

EWS - import email into sql database

I've been trying to import the body from emails into a field in a SQL 2005 database but it keeps losing the formatting (carriage returns, tabs, etc) Anyway of getting around this? ...

How to access an Exchange 2007 public folder via WebDav?

In Exchange 2003 I could connect via WebDav to a public folder via a URL similar to: https://mail.myserver.com/Public/My%20Public%20Folder/ I'm trying to do the same thing in Exchange 2007 but cannot figure out the proper URL for a public folder. ...

Outlook macro to jump to (open) IMAP Inbox

I am using Outlook to sync mail with GMail via IMAP. Unfortunately, Outlook's default shortcut to go to the Inbox (Shift+Ctrl+I) opens the original Inbox, not the new default IMAP Inbox (which I have specified as the new Outlook default e-mail account). I'd like to create a macro that I can bind to another keystroke, which will open th...

Exchange mail attachment extraction using managed code

Does anyone know of a way to copy mail attachments of a particular extention from mail when they arrive from exchange 2003, into a shared directory using managed code? I know one way is to use vbscript, using sinks that exchange exposes. however I was wondering if anyone had seen a sample in managed code, perhaps using interop?? Any sa...

How do you add users from a CSV file to Active Directory (AD) and Exchange using PowerShell?

How would one add a group of users to Active Directory from a csv file using PowerShell? The csv file would contain the first, last, email, temp password, and description for the users. The OU, permissions, and etc. could be hard coded. The script should also add an Exchange 2007 email box. ...

How do I send an email to an Exchange Distribution list using c#

I need to send an email to an Exchange distribution list called "DL-IT" using c#. Does anyone know how to achieve this? ...

What is the tool to View all exchange MAPI folders?

I'm doing some exchange web services development. As part of the app, I'm creating a hidden folder in the user's exchange mailbox. I remember reading somewhere that there is a tool that lets you browse all your exchange folders... kind of like outlook, but more dev-focused. I can't seem to google the answer. Can anyone point me to it...

Talk to Exchange 2003 from Java

What choices might I have for talking to an Exchange 2003 server from a Java application? I've heard a few references to projects that offer some .NET services to Java. I think I've also heard something about Exchange 2007 exposing web services, but I'm not sure if that's available in 2003. Has anyone done this? Any suggestions? Edi...