You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
353 B
PHP
16 lines
353 B
PHP
<?php
|
|
//
|
|
// If config.php is called directly, redirect to login.php
|
|
//
|
|
if (ereg("config.php", $PHP_SELF)) {
|
|
header("Location: ../login.php");
|
|
}
|
|
|
|
// default aliases that need to be created for all domains
|
|
$default_aliases = array (
|
|
"abuse" => "abuse@example.com",
|
|
"postmaster" => "postmaster@localhost",
|
|
"webmaster" => "webmaster@example.com",
|
|
);
|
|
?>
|