exchange

How do I do this ASP WebDAV FBA Authentication example in PHP?

Hi, I need to have PHP authenticate to an exchange server. Once able to succesfully connect to it, I'll need to write webdav requests in the PHP so I can extract data from the exchange server and use it in a web application. It would be somewhat simple except that the 2003 Exchange server has Forms Based Authentication (FBA) turned on. ...

Reinstall Outlook 2003 and use BCM2007, or any way to use BCM2003 on an exchange server?

Hi to all, I currently have Office 2007 with BCM installed on my new laptop, and it's getting annoying that Outlook 2007 seems to crash on a regular basis, which seems to be because I work from home and the data connection is unstable to the server. My two fold question is : a) Is there any way to use BCM2007 with an old version of Offi...

Error HRESULT E_FAIL when creating Exchange mailbox (CDOEXM.IMailboxStore.CreateMailbox)

I am trying to automate the process of creating an Exchange Mailbox for AD users and am running into an issue. When calling the CreateMailbox method I am receiving the error "Error HRESULT E_FAIL has been returned from a call to a COM component". I have installed and referenced the Exchange Management Tools and am using impersonation f...

Data Exchange Design Proposal

Basically the situation we have is we need to be able to take data from an arbitrary data source (database, flat file, it could be anything really), morph the data so it maps to the schema we have, and then send us the data so we can store it. The data will be coming from ~200 different physical locations around the country and we'd lik...

Redemption - Find public folder

Using Redemption I need to put a draft email in a specific Public Folder. I know the full path of the folder but I can't work out how to get there using RDO. Eg. the folder path is "\\Public Folders\All Public Folders\XXXX\Drafts" I'm using Delphi2006 and Exchange 2007 but that shouldn't matter... oSession := CreateOleObject('Redempti...

List exchange 2003 mailbox rights

How can i list the rights that have been assigned to a domain users mailbox? e.g. The accounts that are specified in the "Mailbox Rights" section of the "Exchanged Advanced" tab of AD Users & Computers? ...

Is it possible to set a cookie for a site /server other than you own?

Here's the quick version of my question: Is it possible to set a cookie somehow into a client's browser when the cookie is for use with a different server (in this case an Exchange mail server)? In this scenario the server trying to set the cookie is at "intranet.myschool.edu" and the exchange server is at "owa_server.myschool.edu". ...

Is there a way I can create Exchange folders and set permissions through .NET calls?

I'm looking to build a snippet of .NET code that will go into an Exchange server and create a Public folder. Along with this I'd like to be able to set the permissions on the folder. If it's easier to copy one folder to a new one and copy over the permissions that way, that's okay too. Has anyone done this before? ...

PHP Exchange 2007 Server SMTP, NTLM Authentication Realm

I am trying to connect to a hosted Exchange setup at sherweb.com via. PHP using SMTP w/ NTLM authentication. When connecting I need to enter the NTLM Authentication Realm. I am receiving the following error from the PHP script, "The requested credential workstation is not defined" I am using the SMTP class and SASL class from phpclass...

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 has functionality for sending messages via. the web service. ...

Synchronize InterAction Distribution lists with AD Distribution Lists

We have a need to allow users to be email directly to a mailing list defined in InterAction. It seems that InterAction provides the ability to create these mailing lists, but you are only able to mail to them from within the InterAction client (web and windows). What we really need is for there to be a way to send an email to "inte...

Exchange Server Organizational Structure

I need to figure out a way to build a hierarchy by Director->Manager->Employee from an exchange server. I have very limited knowledge of exchange, so does anyone have any ideas for me? Thanks ...

powershell exchange : how do you screen for legacy or linked mailboxes?

I've noticed when I pull up exchange management console, it shows mailboxes which have the "Recipient Type Details" as Legacy Mailboxes. How do i go about querying which ones are legacy, user or linked mailboxes? I've tried get-mailbox -identity | select deleteditemflags but that doesn't seem to work. thanks in advance ...

Intercepting email to add text

Hi, I need to automatically add text to emails sent by users. The text CANNOT be added as a signature in outlook, but has to be added after the users click 'send' in outlook. My company uses Microsoft Exchange Server. Any ideas? Thanks! ...

Best way to access The MS-Exchange Global Access List from a .net application

Which is the best way to access the corporate MS-Exchange GAL (Global Access List - The list of the corporate ID/GroupIDS) from a .net application? We could use CDO, MAPI, LDAP etc but i am looking forward to a solution which is faster and is compatible with atleast outlook 2000 and above. ...

Exchange Message Tracking log - extracting email send failures

Our Exchange server generates about 100MB of message tracking logs per day. Deep inside these logs are email send failure reports that we want to extract. We have a transactional site that sends confirmation emails to the customer at the end of the transaction. We require the user to enter their email address twice, in two textboxes. If...

How do I connect to multiple Exchange servers?

I'm working at a client site, and connect to their Exchange 2000 server via web mail. I have Outlook 2007 running as well connected to my companies Exchange 2007 over HTTP. Is there any way to connect to the client's Exchange 2000 server using anything other than web mail? Ideally, Outlook 2007 would be able to do it, but I don't thin...

powershell exchange : if then statement syntax?

In my script i'm trying to test for true and false. Is this syntax incorrect? $pdaout = "" if ($pda.ActiveSyncEnabled.tostring() -like "True") {$pdaout = "TRUE"} if ($pda.ActiveSyncEnabled.tostring() -like "False") {$pdaout = "-"} write-host $pdaout ...

powershell exchange 2003 : query ActiveDirectory for activesync, office, and description?

I'm using powershell to pull a list of exchange 2003 users and based on the user's mailbox "LegacyDN", I was hoping to use an LDAP query to pull their activesyncenabled property (msExchOmaAdminWirelessEnable), description, and office; however, it doesn't seem to be coming up for me. any ideas? here is how i'm querying for the AD attri...

Powershell WMI ROOT\MicrosoftExchangev2, and WQL where usage

(PS Version 1) PS C:\> $query = 'Select * From Exchange_PublicFolder WHERE Path LIKE "/Foo%"' PS C:\> $query Select * From Exchange_PublicFolder WHERE Path LIKE "/Foo%" PS C:\> gwmi -namespace ROOT\MicrosoftExchangev2 -query $query Get-WmiObject : Provider is not capable of the attempted operation At line:1 char:5 + gwmi <<<< -namespac...