Questions tagged [exchange-server]

Questions about automation and APIs related to Microsoft's Enterprise level messaging server.

Microsoft Exchange Server is the server side of a client–server, collaborative application product developed by Microsoft. It is part of the Microsoft Servers line of server products and is used by enterprises using Microsoft infrastructure products. Exchange's major features consist of electronic mail, calendaring, contacts and tasks; support for mobile and web-based access to information; and support for data storage.

Use this tag on programming questions related to the use of this product - questions on installation, maintenance and configuration are better asked on Server Fault, while questions on the use and configuration of Outlook or other email clients are better directed to Super User.

See also:

4797 questions
11
votes
3 answers

Exchange Powershell - How to invoke Exchange 2010 module from inside script?

I'm writing a script that does a number of things with AD and Exchange and just got to the part of the GUI where I need to start working with Exchange but don't see where I can manually specify to include the Exchange module. The normal process I'm…
thepip3r
  • 2,855
  • 6
  • 32
  • 38
11
votes
1 answer

Get the organizer's calendar appointment using EWS for Exchange 2010

I have an synchronization application with sync appointments with Exchange 2010, and i have some questions. UserA creates an appointment and add UserB as attendee, this means UserA is the organizer of the appointment and UserB outlook calendar will…
ahlun
  • 458
  • 1
  • 6
  • 17
11
votes
3 answers

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?
Luke
  • 5,771
  • 12
  • 55
  • 77
11
votes
5 answers

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?
micho
  • 2,196
  • 2
  • 21
  • 26
11
votes
2 answers

Maximum size of email X-Headers

We are looking at sticking some metadata into the X-Headers of email messages. These emails are for consumption by internal systems, and will be hosted on an Exchange server. Is there a maximum size for the ammount of data that we can store in an…
Spike Williams
  • 35,795
  • 13
  • 48
  • 60
11
votes
1 answer

CFNetwork SSLHandshake failed (-9806)

When I am trying to configure my Enterprise Mail account(Exchange) in Apple Mail, I can see the following error logs in Console. But I could not see this error while configure same account in Outlook 2011 Mail client. Even I can see the same error…
MacD
  • 361
  • 3
  • 6
11
votes
2 answers

Can't get sender email address with EWS Java API

I am using EWS Java API 1.1.5. I am trying to get the email sender as follows: ItemView view = new ItemView(10); FindItemsResults findResults = service.findItems( WellKnownFolderName.Inbox, view); for (Item item :…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
10
votes
1 answer

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…
10
votes
1 answer

How to use MailKit with IMAP for Exchange with OAuth2 for daemon / non-interactive apps

I have a daemon that reads the inbox of an email address and performs actions to the emails. I'm using MailKit to connect to the exchange server with IMAP but Microsoft has shut down basic authentication for us (at 4am, without warning...). So I…
laurian
  • 739
  • 6
  • 18
10
votes
3 answers

Cannot get ActionMailer working with MS Exchange via SMTP

Here's my simple test program (using ActionMailer 3.0.8, Ruby 1.9.2p180 Mac OS X): require 'rubygems' require 'action_mailer' ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.smtp_settings = { :address => "my_exchange_server", …
Edward J. Stembler
  • 1,932
  • 4
  • 30
  • 53
10
votes
2 answers

Graph API fails for Archive mailboxes

I've been using the Microsoft Graph API to access Exchange Online (Office365) In-Place Archives. It's basically an authenticated GET HTTPS request against…
user124114
  • 8,372
  • 11
  • 41
  • 63
10
votes
1 answer

Using Proxy PAC with EWS API

I have a web application that calls the EWS Managed API to connect to office365. I've followed the Get started with EWS Managed API 2.0 client applications documentation on MSDN. In the web.config I've specified the proxy pac:
Alessandro
  • 4,382
  • 8
  • 36
  • 70
10
votes
1 answer

Get members of Exchange Distribution List in Python

Using exchangelib, how do you get a list of the members of a Global Distribution List? In the included test case I see how to create and delete a DL within a folder in your Contacts, but not referencing a global DL. I'm open to using a different…
stdout
  • 1,761
  • 1
  • 18
  • 33
10
votes
2 answers

Exchange Web Services - Send email with attachment

I'm new to using EWS (Exchange Web Service) and I'm looking for a simple example that demonstrates how to send an email with an attachment. I've searched for an example and I can't find any that are simple and clear-cut. I've found examples about…
Anthony
  • 734
  • 3
  • 9
  • 22
10
votes
3 answers

Connect to Microsoft Exchange PowerShell within C#

I'm trying to connect to remote powershell from C# .NET WinForms app. My goal is to create my own version of Microsoft PowerShell ISE. So i need a way to execute PowerShell Scripts from my app on Remote Machines. I've created couple of methods and…
MadBoy
  • 10,824
  • 24
  • 95
  • 156