exchange-server

Is there a Perl module to monitor an email queue?

ⅰ亾dé卋堺 提交于 2019-12-22 06:12:38
问题 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 script etc. (read: I'm not new to Perl). However, I have no idea what modules are good for doing this particular task. I'd like to get started on this as quickly as

Is there a Perl module to monitor an email queue?

对着背影说爱祢 提交于 2019-12-22 06:12:28
问题 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 script etc. (read: I'm not new to Perl). However, I have no idea what modules are good for doing this particular task. I'd like to get started on this as quickly as

Is there a Perl module to monitor an email queue?

断了今生、忘了曾经 提交于 2019-12-22 06:12:28
问题 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 script etc. (read: I'm not new to Perl). However, I have no idea what modules are good for doing this particular task. I'd like to get started on this as quickly as

How do I get folder size with Exchange Web Services 2010 Managed API?

给你一囗甜甜゛ 提交于 2019-12-22 06:00:54
问题 I'm attempting to use EWS 2010 Managed API to get the total size of a user's mailbox. I haven't found a web service method to get this data, so I figured I would try to calculate it. I found one seemingly-applicable question on another site about finding mailbox sizes with EWS 2007, but either I'm not understanding what it's asking me to do, or that method just doesn't work with EWS 2010. Noodling around in the code insight, I was able to write what I thought was a method that would traverse

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

允我心安 提交于 2019-12-22 05:28:16
问题 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 ".RequiredAttendees" is empty, but I can retrieve values from the ".DisplayTo" and ".DisplayCc" without issue. Any suggestions? I have included a cope snippet below for reference. CalendarView calendarView = new CalendarView(startDate, endDate);

Use Exchange Web Services on Android

℡╲_俬逩灬. 提交于 2019-12-21 21:08:56
问题 there is a microsoft API for Java to connect to Micrsoft Exchange Webservices. Unfortunately it doesn't work on Android as mentioned in the Microsoft tutorial. Has anybody an idea how to connect to Microsoft Exchange with Android? There is a solution using WebDav, but WebDav is only supported by Microsoft up to Exchange 2007. Can anybody help me? thx Eddy 回答1: You can use microsoft's EWS api which is open source for android by doing the following steps, Download the source code available in

Convert Outlook REST API item id to MAPI EntryID

大兔子大兔子 提交于 2019-12-21 20:15:26
问题 is there an officially supported way to convert item ids from the Outlook REST API into an MAPI EntryID? I am talking about the "Id" field returned for items in the json response of an http GET on a mailbox endpoint like so: https://outlook.office365.com/api/v2.0/me/messages The Id field contains a base64 value. When I convert it to hex and compare it to the PR_ENTRY_ID value of the same item, e.g. with MFCMAPI , I can find the EntryID is contained in the hex version of the Id field. Is there

Java mail client to MS Exchange server

断了今生、忘了曾经 提交于 2019-12-21 19:58:17
问题 Our MS exchange server doesn't use Imap or pop3 protocols, I am trying to write a client in Java to connect to the exchange server, I guess I wont be able to do this with Java Mail API (if I am not wrong). I tried telnetting the exchange server address with ports 110 and 143 and 25 but with no luck. Can any one suggest if there is an existing API to deal with this scenario, any suggestions are appreciated. 回答1: Got exJello off of Oracle's site. Probably a good place to start. 回答2: Exchange

Techniques for integrating an ASP.NET intranet app with the Outlook calendar

时光总嘲笑我的痴心妄想 提交于 2019-12-21 12:20:11
问题 I can ignore the braying of my users no longer. They want a task scheduling system and at some point I have to deliver. I was thinking of making my own (can't be hard), but then users would have two side-by-side task managements systems since they already use Outlook for the same thing. In terms of Outlook calendar / task integration, two possible approaches occurred to me: 1) Use JavaScript and Automation I seem to remember it's possible to do automation in JavaScript. PROS: I've done

Accessing Microsoft Exchange server from Ruby

∥☆過路亽.° 提交于 2019-12-21 03:50:54
问题 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? 回答1: One place to start would be the Exchange Developer Center, where Microsoft links to downloads of the different SDKs, documentation, etc. Understandably, most of the docs and examples will be using Microsoft's .NET Framework and languages. If you want to connect with Exchange 2007 or 2010, you'll probably find it easiest to use some form of Exchange