| Home
| Calendar
| Mail Lists
| List Archives
| Desktop SIG
| Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings Linux Cafe | Meeting Notes | Linux Links | About BLU |
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).