Tagged Questions
Microsoft Exchange Server. Microsoft's Enterprise level messaging server.
27
votes
8answers
44k views
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 ...
14
votes
1answer
601 views
How do I retrieve just recurring event masters using Exchange Web services?
I'm using a CalendarItemType view to retrieve calendar items. The only items I care about are those that I've created and I know that they are all weekly recurring items. I'm able to get each ...
11
votes
10answers
11k views
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 ...
10
votes
6answers
2k views
Interacting with Outlook appointments using rails
I have a rails application running on a Linux server. I would like to interact with Outlook/Exchange 2003 appointments from the rails application. For example, certain actions should trigger sending ...
10
votes
9answers
13k views
Best way to access Exchange using PHP?
I'm writing a CMS application in PHP and one of the requirements is that it must be able to interface with the customer's Exchange server. I've written up this functionality a few times before and ...
8
votes
1answer
171 views
How do I query effective permissions on an Active Directory Object?
I'm trying to programmatically determine whether the current user has certain permissions on a given Active Directory object (specifically in this case, I'm trying to determine whether the user has ...
8
votes
4answers
766 views
Exchange 2003 - which API to use to find out room/resource availability?
I need to expose room availability information from a web service that will be consumed by a number of other applications. The availability information is stored within Exchange 2003, and can be ...
7
votes
1answer
299 views
How to download unread email attachment using Exchange web service in ASP.NET?
I am using Exchange Server 2007 SP3
and I am able to connect exchange web service using following code
ExchangeServiceBinding esb = new ExchangeServiceBinding();
esb.RequestServerVersionValue = new ...
7
votes
5answers
2k views
Is Catalyst+Mason+Template::Toolkit worth learning rather than sticking to LAMP+Axkit?
Currently i'm using pretty much Unix + Mysql + Perl + Apache with some javascript to make it more ajax like. and i've been looking at sites which are web 2.0 and stackoverflow and really like the ...
6
votes
1answer
10k views
Getting started with Exchange Web Services 2010
I've been tasked with writing a SOAP web-service in .Net to be middleware between EWS2010 and an application server that previously used WebDAV to connect to Exchange. (As I understand it, WebDAV is ...
6
votes
4answers
6k views
Connect to Exchange mailbox with Python
I need to connect to an Exchange mailbox in a Python script, without using any profile setup on the local machine (including using Outlook). If I use win32com to create a MAPI.Session I could logon ...
5
votes
2answers
3k views
Javamail NTLM Authentication Failure
Trying to connect to Exchange server using NTLM in JavaMail. I can connect to SMTP, but not IMAP. I can also authenticate via the OS X Mail.app application using the identical ...
5
votes
1answer
3k views
iphone iOS4 access to exchange public folders / calendars
"I'm trying to get iPhone to play nice with all my work calendars that sync over exchange.
My personal calendar works great with adding/remove events. However, my department calendar which is in a ...
5
votes
3answers
1k views
Folder.Bind - “Id is malformed” - Exchange Web Services Managed API
I'm passing the Folder.Id.UniqueId property of a folder retrieved from a FindFolders query via the query string to another page. On this second page I want to use that UniqueId to bind to the folder ...
5
votes
1answer
696 views
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 ...
5
votes
5answers
3k views
Using WebDAV to access Exchange 2003 Inbox
How do you (using .NET) use WebDAV to get a listing of emails in a user's inbox (not your own inbox) and then get the properties and/or contents of each email?
I'd like to do this without WebDAV.NET, ...
5
votes
2answers
4k views
Example/How-To create calendar appointment using Exchange 03 Webdav and PHP?
I've been trying to figure this out for about two weeks. I'm able to create email items in people's folders, read the folders, all that stuff but for the life of me I can not get anything to work with ...
4
votes
1answer
168 views
PHP: Problems with Microsoft Exchange, no have body of email in PHP
I have a litte problem with imap_fetchstructure, Microsoft SMTP Server (?) and signed mails by application/pkcs7-signature. Normally when I send signed email to gmail server I don't have any troubles. ...
4
votes
1answer
109 views
How do I find ActiveSync attributes from Exchange with C#?
I'm trying to find some ActiveSync attributes from Exchange. I found a good article that shows a PowerShell cmdlet for finding this information. But I'm trying to find where this information is ...
4
votes
1answer
197 views
EWS API - Create calendar and share with reviewer permissions
I'm having some trouble on creating and share a calendar with review permissions using Exchange Webservice API .NET.
At the moment this is my code:
Folder addCalendar = new Folder(service);
...
4
votes
2answers
300 views
PowerShell ParameterBindingException
I am currently building an application to automate some Exchange 2010 operations from a ASP.NET MVC website.
Right now, I've run into a ParameterBindingException when I try to invoke the ...
4
votes
1answer
1k views
Exchange Web Services Managed API: Accessing other users items
Is it possibly to access the folders and items of other Exchange accounts other than the one of the logged in user?
Can I do this via Exchange Web Services Managed API?
4
votes
2answers
417 views
Accessing Microsoft Exchange server from Ruby
I need to sync MS Exchange's contacts with my Ruby on Rails application.
Which is the best way? Would you recommend any existing gems for it?
4
votes
2answers
1k views
Can I perform a search on mail server in Java?
I am trying to perform a search of my gmail using Java. With JavaMail I can do a message by message search like so:
Properties props = System.getProperties();
props.setProperty("mail.store.protocol", ...
4
votes
3answers
2k views
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 ...
4
votes
3answers
902 views
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 ...
3
votes
3answers
112 views
Creating an Exchange Mailbox for a User in C#
I just created a user in Active Directory. I would like to create an exchange mailbox for this user. Can I just set some of the users properties? Something like this:
DirectoryEntry user = ...Get ...
3
votes
2answers
339 views
Android Email, CSS Media Queries, & Outlook Exchange
I am using the following embedded tag and media query inside HTML email:
<style type="text/css">
@media screen and (max-device-width:800px) {
/* styles */
}
</style>
I have a ...
3
votes
2answers
438 views
Exchange Web Services (EWS) FindItems within All Folders
I am using the following code to find all the emails sent from a user, however this only searches the main Inbox folder and doesn't check any sub-folders. I would like to search all the mail items ...
3
votes
2answers
278 views
Determining version of Exchange server on the system using C#
Is there a way to detect which version of Exchange Server is running (2007 or 2010) via c#?
3
votes
1answer
514 views
Validate email address on exchange server
I'm allowing users to manage a distribution list stored in a database. Users are only allowed to enter emails that are @mydomain.com. A web based application then takes the distribution list and sends ...
3
votes
1answer
256 views
How do i find out if an appointment is private
I use Exchange Server Managed API. How do I find out if an appointment is private?
There doesn't seem to be a method or property in the "Appointment" class.
3
votes
2answers
280 views
Exchange Appointment Types
I use the following code to save an appointment via Exchange Web Services Managed API:
Appointment appointment = new Appointment(m_exchangeService);
appointment.Subject = subject;
appointment.Body = ...
3
votes
5answers
1k views
Creating Tasks for other users using Exchange Web Services (EWS) Managed API
As an "EWS Managed API Newbie", I'm having some problems finding examples and documentation about creating and managing Tasks.
I've managed to create a task for myself without a problem. However, I ...
3
votes
2answers
753 views
Drupal and Exchange Server Calendar
Is there a module, or other way to integrate Drupal/Drupal Calendar and Exchange Server Calendar?
3
votes
2answers
579 views
2-way sync between ms exchange calendar and Java app
we are developing a CRM app which holds customer meeting info. Users have requested that their Outlook calendars should reflect the activity they have booked in the CRM application and vice versa.
...
3
votes
1answer
100 views
Save message properties only locally (Outlook)
How can an Outlook add-in set a MAPI property (for example, the body content) on a message, but only have it saved in the local cache (and not sent back to the exchange server)? I've seen this done ...
3
votes
1answer
869 views
Are extra installs needed to access Managed EWS on an Exchange 2010 server?
Does the system administrator need to install anything extra to get EWS Managed API working for clients on Exchange 2010? At the moment I am getting problems just using AutoDiscover via the managed ...
3
votes
2answers
558 views
SMTP e-mail RECALL from PHP
First of all I am aware that e-mail recall rarely works, and then usually only with Microsoft Exchange server.
Despite the limitations, a client has requested this feature.
My understanding is that ...
3
votes
2answers
988 views
Editing an SMTP header with an Exchange 2007 Transport Agent
I'm currently writing an Exchange 2007 Transport Agent to replace some headers in all outgoing mails from a particular sender. I managed to replace the 'From' SMTP header successfully, but rewriting ...
3
votes
3answers
238 views
Talking to a demo Exchange Server 2007
I would like to test a trivial SOAP app against Microsoft Exchange 2007 (or 2010) webservices. Is there any demo server on the internet available? My problem is, that I have no 64-Bit machine around ...
3
votes
4answers
3k views
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?
3
votes
1answer
476 views
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 ...
3
votes
1answer
2k views
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 ...
3
votes
5answers
4k views
Exchange Server 2007 Web Services PHP Class
Does anyone know of an open source PHP class (preferably BSD or MIT license) that will interface with the MS Exchange Server 2007 Web Services via. SOAP?
I am looking for a higher level class that ...
3
votes
5answers
478 views
What is the best way to get started using MAPI?
I've been spending some time hacking away at MAPI for the purpose of creating tools for process automation on both server and client. Most of the resources I read online are either short on details ...
3
votes
3answers
3k views
Need a way to authenticate to Exchange Web Services
I'm using Exchange Web Services to Find, Create, Update, and Delete appointments from the calendars for one or more people. The application would be used by a manager to view employees' vacation time, ...
3
votes
1answer
2k views
Deleting messages from Exchange IMAP mailbox on iPhone
I have a secondary Exchange mailbox configured on my iPhone using IMAP. This all appears to work fine except when a message is deleted on the phone, it still shows normally in Outlook. It does not ...
3
votes
6answers
5k views
Accessing an Exchange Server without Outlook
Is there a method of accessing an Exchange server that does not have IMAP or POP3 enabled without Outlook? It does not appear that Outlook Express supports Exchange (only IMAP and POP3).
2
votes
1answer
51 views
Debugging EXCHANGE transport agent in VS2010 c#
I was given the source to a transport agent that parses incoming email that meet a certain criteria. I need to make some modifications but I need to track variables and my debugging attempts have been ...