Boston Linux & Unix (BLU) Home | Calendar | Mail Lists | List Archives | Desktop SIG | Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings
Linux Cafe | Meeting Notes | Blog | Linux Links | Bling | About BLU

BLU Discuss list archive


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Any luck interfacing with MS Exchange?



It shouldn't be too hard, you only have to handle one type of
return message from the Exchange server:

(php):
	
    $fp = fsockopen("EXCH1.domain.com", 25, &$errno, &$errstr, 30);
    if(!$fp) {
        echo "$errstr ($errno)<br>\n";
    } else {
        fputs($fp,"INQUIRE SERVER STATUS");
        while(!feof($fp)) {
            echo fgets($fp,128);
        }
        fclose($fp);
    }

would probably output:

    SERVER DOWN; TRY AGAIN LATER.


Ciao!
gordon
:)


> 
> Greetings,
> 
> Has anyone heard of a opensource project which is driving towards
> an opensource interface with MS Exchange. 
> 
> I'm hoping for something as simple as a PHP library plugin.  Perl
> would be fine too.
> 
> I've got a web-base calendar which could benefit greatly if it
> could talk to Exchange.
> 
> 
> - Christoph
> 
> 
> -
> Subcription/unsubscription/info requests: send e-mail with
> "subscribe", "unsubscribe", or "info" on the first line of the
> message body to discuss-request at blu.org (Subject line is ignored).
> 

-
Subcription/unsubscription/info requests: send e-mail with
"subscribe", "unsubscribe", or "info" on the first line of the
message body to discuss-request at blu.org (Subject line is ignored).




BLU is a member of BostonUserGroups
BLU is a member of BostonUserGroups
We also thank MIT for the use of their facilities.

Valid HTML 4.01! Valid CSS!



Boston Linux & Unix / webmaster@blu.org