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
6
votes
2 answers

IMAP connection carriage return line feed issue from linux?

I'm attempting to connect to our exchange server using Mail::IMAPClient but a script that was working is having issues when I moved it from a temp dev desktop running ubuntu to a new dev env running centos. During that time I found out the exchange…
krizzo
  • 1,823
  • 5
  • 30
  • 52
6
votes
3 answers

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.…
stephan
  • 10,104
  • 1
  • 51
  • 64
6
votes
4 answers

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

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…
penderi
  • 8,673
  • 5
  • 45
  • 62
6
votes
1 answer

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…
Peter Wood
  • 163
  • 1
  • 8
6
votes
2 answers

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); addCalendar.DisplayName = name; addCalendar.FolderClass =…
Canastro
  • 2,979
  • 30
  • 39
6
votes
3 answers

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…
James van Dyke
  • 4,790
  • 3
  • 28
  • 25
6
votes
2 answers

What are the symbols used in Binance's dapi (coin futures api)?

I am trying to download historical price data of BTC/USD perpetual futures using binance's api for coin futures, specifically, I'd like to use this endpoint. However, I cannot find what 'symbol' I have to specify for BTC/USD. I've tried multiple…
Dedados
  • 281
  • 2
  • 7
6
votes
1 answer

Can't Retrieve Resources (rooms) from Exchange Web Services

I'm stumped. I'm using Exchange Web Services to retrieve calendar information from both my local and other calendars in my company, but the ".Resources" are always empty. We use Resources to store conference room information. Interestingly even…
user803947
  • 61
  • 1
  • 2
6
votes
2 answers

Office365 autodiscover.xml returns 403 Forbidden

I'm working on a simple benchmark script that requires information provided by https://outlook.office365.com/autodiscover/autodiscover.xml. I am using basic authentication with my outlook.com email credentials and it works fine when testing from my…
6
votes
1 answer

What is the relationship, if any, between Active Directory groups and groups in Exchange?

Tasked with creating a login page that would allow members of two specific groups access to some controllers and actions in an MVC project, I set about to create a role provider for AD. I managed to get it configured with forms authentication, and…
Jay
  • 56,361
  • 10
  • 99
  • 123
6
votes
3 answers

C# create calendar item with EWS, how to get back the results?

I build an app based on this site http://msdn.microsoft.com/en-us/library/dd633661%28v=EXCHG.80%29.aspx appointment.Subject = "Status Meeting"; appointment.Body = "The purpose of this meeting is to discuss status."; appointment.Start = new…
Data-Base
  • 8,418
  • 36
  • 74
  • 98
6
votes
2 answers

figure out a long term solution for both file sharing and distributing documents from classroom to all the students

Background: I am an highschool computer science teacher. My students uses Citrix as their means for sharing internal files. In order to access the files, they must be logged in using Citrix Receiver. The account used to login is created on AD and…
gordon sung
  • 605
  • 2
  • 8
  • 27
6
votes
6 answers

javax.mail.MessagingException: A3 BAD User is authenticated but not connected

I am trying to read mail from exchange server using IMAP protocol. I have implemented the code. But following exception occurs while executing the code.This exception occurs occasionally, I didn't get the reason why this is…
Yogesh Khopade
  • 73
  • 1
  • 2
  • 8
6
votes
3 answers

How to check, by PHP, if my script is connecting to SMTP server

Simply what the title says. Want to know how to check if the connection is working and if not, what is the error. Btw the SMTP server is exchange 2007.
elvispt
  • 4,832
  • 7
  • 27
  • 35
6
votes
1 answer

How can I serialize a complex Powershell array to disk for processing by a second Script?

I am collecting statistics about an Exchange environment and need to collect statistics about all the DNS domains in use. This is a long and intensive operation that can take a long time. I want to persist these values to disk, so I can run a…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448