<?php
////////////////////////////////////////////////////
// OE_Generator - Outlook Express configuration generator Tester
//
// Autor: Emilio Rodriguez - emiliort@gmail.com
//
// License: public domain
////////////////////////////////////////////////////
include ('OE_Generator.class.php');
$OE_Generator = new OE_Generator;
/**
* Generate this configuration via windows registry file (creating a .reg file)
* @param string $POP_server
* @param string $SMTP_server
* @param string $email
* @param string $user
* @return void
*/
$OE_Generator->generate('pop3.domain.com','smtp.domain.com','test@domain.com','test.domain.com');
?>
|