exchange

datatel/colleage data exchange

I am looking for information on exchanging data with colleague. Use cases include pulling data from an applicant/student record, and notifying colleague of certain events. Information on uniObjects, ELF, and EDX preferably with a .Net flavor would all be appreciated. Looking for the most efficient way to get this done. Thanks. ...

Can I record a timestamp on my iPhone without going through the lock screen?

I want to use my iPhone to very easily create a timestamp whenever a certain event occurs (e.g. every time I cough). The goal is to build up a log file that can be analyzed later for trends. My iPhone is passcode locked because of my Exchange policy, so the steps to do this if I were to create a conventional app are as follows: Press ...

Modifying Exchange ACL for folders with python

Hi folks, while try to read the ACL Table of a folder, I ran into this problem: In a C++ tool (MFCMAPI) this method is used to get the Property PR_ACL_TABLE in a usable data type: // Open the table in an IExchangeModifyTable interface EC_H(lpMAPIProp->OpenProperty( ulPropTag, (LPGUID)&IID_IExchangeModifyTable, 0, MAPI_DEFERRE...

SmtpClient Sending bad MessageIDs

I've written an automated e-mailer for my company's invoices. Things are all fine and dandy till I ran across a couple emails that weren't getting delivered. Upon further inspection our IT Guru found that the messages sent by the emailer have incorrect MessageID headers. Message-ID: <98bcd4e6-be30-4b22-8026-6047c8231b1f> Where they sh...

Outlook exchange solution

I'm searching for a exchange outlook soulution for my company ... ive find codeTwo company, with there software: http://www.codetwo.com/public-folders/ , for syncing calander .. and its great product, but if someone have a better solution / idea ( better software for lower price) or something like that it would be great. Btw, it need t...

Capturing received & sent emails from Microsoft Exchanged

I'm wondering if someone could point me out in the right direction. I need to capture e-mails as they are received and/or sent via Microsoft exchanged. I need to capture typical information such as from, to, subject, body, date send/received, conversation id, etc.... but I also need to capture attachments if any and also if possible con...

Funnel emails from multiple addresses into single mailbox with Exchange

Is it possible to get Exchange to funnel mails targeted to multiple addresses to a single inbox? I want all mails to addresses "service-*@acme.com" to go into a single mailbox. Where * is a random's generated key. Can this be done with Transport Rules? (in 2007/2010 - what about 2003?) Do I need some sort of CatchAll agent? ...

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

Hi. 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. ...

Java mail client to MS Exchange server

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 exi...

Empty EntryID after using GetMessageFromMsgFile in Outlook Redemption

Using RDO 4.8.0.1184 with Delphi 2006 on Exchange 2007 SP3 I have the following code (abbreviated): Msg := MailSession.GetMessageFromMsgFile(sTempFile, false); Msg.UnRead := true; Msg.Save; Msg.Move(some_folder); ShowMessage('EntryID: ' +Msg.EntryID); The resulting dialogue shows an empty EntryID. I've tried printing the EntryID at ...

Exchange edb on Linux

I have a 60GB edb file, and I want to break the database into individual emails. I do not have any of the original domain information, so I can't just fire up a Server 2k8 vm and reattach it there. I have made some progress with a naive approach of stripping binary data (bytes not 0x09, 0x0a, 0x0d, and 0x20 through 0x7f) from the file (w...

Programmatically querying my company's employee directory

My company is a Microsoft shop (Exchange, AD, etc.). I'd like to do queries on our employee directory like: Person person = directory.Lookup("jsmith"); string title = person.Fields("JobTitle"); Person manager = person.GetManager(); if (person.IsManager()) { Person[] subordinates = person.GetSubordinates(); } Is there any easy way...

OWA Send - this Action can't be performed.

OK so I have a web application (sharepoint based) that has a create email menu link - that opens up a draft email and populates the mail account to use and the from address to set. For me this works because I'm on DOMAIN_A and the mail account is also on DOMAIN_A. Now recently they moved the majority of users over to DOMAIN_B. Now whe...

Connecting Thunderbird to Exchange via DavMail

Sending of password did not succeed. Mail server localhost responded: Unable to get mail folder at /exchange/[email protected]/, Webdav not available on Exchange server This is the message the Thunderbird (and DavMail) show to me when i try to connect. I've set thunderbird as the DavMail guide suggest. Setting in Da...

Exchange Web Services Create Meeting Request Working Example

Is there a working example anywhere of how to create a meeting request using EWS for Exchange 2007 using C#? Which properties are required? I have added a web service reference and can connect to create and send various items but keep getting the error "Set action is invalid for property." on the response messages. It never says what p...

Retrieve User Entry IDs from MAPI

Hi folks, I extended the win32comext MAPI with the Interface IExchangeModifyTable to edit ACLs via the MAPI. I can modify existing ACL entries, but I stuck in adding new entries. I need the users entry ID to add it, according this C example (Example Source from MSDN) STDMETHODIMP AddUserPermission( LPSTR szUserAlias, LPMAPISES...

Exchange 2010 PushSubscription WCF SOAP

I'm trying to use the PushSubscription feature of Exchange 2010. So far I've got the code to setup push on Exchange 2010: ExchangeService esService = new ExchangeService(); esService.Credentials = new WebCredentials("user", "pass", "domain"); esService.Url = new Uri("https://exchange-box-2010/ews/exchange.asmx"); PushSubscription ps =...

Domain transfer + Microsoft exchange

I have a client who has their domain name registered through Network Solutions and their site hosted at GoDaddy. I checked at GoDaddy and they're not hosting the email accounts, so I asked the client and all they could tell me is they have Exchange. I'm trying to transfer the domain and hosting to a new host, but I don't want to mess u...

ActiveSync does not sync appointments from iCalendar files

There is a problem with ActiveSync and iCalendar files, at least with Outlook/Exchange: you receive an email with an iCalendar attachment, .vcs or .ics file. you accept the meeting request or open and save the attachment New appointment shows up in Outlook, but does not sync to all mobile devices. The programming question here is tha...

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? ...