Yes, its possible to make a little script in a common language as asp, perl or php that use the maildomain utility and MailBox utility.
exemple : a little script in php for print in a html page all the mailbox from one domain.
<?php
$domain=$_REQUEST["domain"];
exec ("E:\\modusMail\\mailbox.exe -list $domain",$tab,$error);
if ($error!=0)
{
print("***error***");
exit;
}
$nb=count($tab);
$flag=0;
for ( $i=0 ; ($i<$nb);$i++ )
{
print("[EMAIL PROTECTED]<br>");
}
exit;
?>
Le 27 janv. 04, � 15:43, Peter Wimbourne a �crit :
* This is the modus mailing list *
Is there a way to generate a listing of all users and their passwords in
Modus?
regards
- peter wimbourne
** To unsubscribe, send an Email to: [EMAIL PROTECTED] with the word "UNSUBSCRIBE" in the body or subject line.
----------------------------------------------------------------------------
This e-mail and any attached files are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this e-mail by mistake, please notify the sender immediately and delete it from your system. You must not copy the message or disclose its contents to anyone.
----------------------------------------------------------------------------
** To unsubscribe, send an Email to: [EMAIL PROTECTED] with the word "UNSUBSCRIBE" in the body or subject line.
