Any luck interfacing with MS Exchange?
Gordon Keegan
lgk011 at dma.isg.mot.com
Thu Jul 6 05:12:55 EDT 2000
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).
More information about the Discuss
mailing list