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.
74 lines
3.1 KiB
PHP
74 lines
3.1 KiB
PHP
<?php
|
|
require "config.inc.php";
|
|
require "my_lib.php";
|
|
|
|
$sessid = check_session();
|
|
|
|
print_header("menu");
|
|
|
|
if (!empty($_POST[submit])) {
|
|
$username = $_POST[username];
|
|
$password = $_POST[password];
|
|
$password2 = $_POST[password2];
|
|
$name = $_POST[name];
|
|
$quota = $_POST[quota];
|
|
|
|
$username = $username . "@" . $sessid[domain];
|
|
$passwd = md5crypt("$password");
|
|
$maildir = $username . "/";
|
|
|
|
if (empty($username) or empty($password)) print_error("You need to fill all fields.");
|
|
|
|
if (!check_email($username)) print_error("The email address that you have supplied at <b>Email</b> is not a valid email address, please go back.");
|
|
|
|
if ($password != $password2) print_error("The passwords that you supplied don't match!");
|
|
|
|
if (!check_string($name)) print_error("The name that you have supplied at <b>Name</b> is not valid, please go back.");
|
|
|
|
$result = db_query("SELECT * FROM alias WHERE address='$username'");
|
|
if ($result[rows] == 1) print_error("This email address already exists, please choose a different one.");
|
|
|
|
$result = db_query("INSERT INTO alias (address,goto,domain,create_date,change_date) VALUES('$username','$username','$sessid[domain]',NOW(),NOW())");
|
|
if ($result[rows] != 1) print_error("Unable to add: <i>$username</i> to the alias table!");
|
|
|
|
if ($use_subdir == "YES") $maildir = $sessid[domain] . "/" . $maildir;
|
|
|
|
if (!empty($quota_table)) {
|
|
$result = db_query("INSERT INTO mailbox (username,password,name,maildir,domain,create_date,change_date,$quota_table) VALUES('$username','$passwd','$name','$maildir','$sessid[domain]',NOW(),NOW(),'$quota') ");
|
|
} else {
|
|
$result = db_query("INSERT INTO mailbox (username,password,name,maildir,domain,create_date,change_date) VALUES('$username','$passwd','$name','$maildir','$sessid[domain]',NOW(),NOW())");
|
|
}
|
|
|
|
if ($result[rows] == 1) {
|
|
$headers = "From: $sessid[username]";
|
|
$subject = "Welcome";
|
|
$message = "Hi $name,\n\nWelcome to your new email account.\n\n";
|
|
print "<i>$username</i> has been <b>added</b> to the mailbox table!\n";
|
|
print "<p>\n";
|
|
print "<b>NOTE:</b>\n";
|
|
if (!mail($username, $subject, $message, $headers)) {
|
|
print "The user needs to first receive an email in order to use the account.<br>\n";
|
|
}
|
|
print "User needs to login with the full email address, in this case: $username\n";
|
|
print "<p>\n";
|
|
} else {
|
|
print_error("Unable to add: <i>$username</i> to the mailbox table!");
|
|
}
|
|
}
|
|
?>
|
|
Create a new local mailbox for your domain.
|
|
<p>
|
|
<form name="mailbox" method="post">
|
|
<table class="form">
|
|
<tr><td>Email:</td><td><input type="text" name="username"></td><td>@<?php print "$sessid[domain]"; ?></td></tr>
|
|
<tr><td>Password:</td><td><input type="password" name="password"></td><td>Password for POP/IMAP</td></tr>
|
|
<tr><td>Password (again):</td><td><input type="password" name="password2"></td><td> </td></tr>
|
|
<tr><td>Name:</td><td><input type="text" name="name"></td><td>Full name</td></tr>
|
|
<?php if (!empty($quota_table)) print "<tr><td>Quota:</td><td><input type=\"text\" name=\"quota\" value=\"$default_quota\"></td><td> </td></tr>\n"; ?>
|
|
<tr><td colspan="3" align="center"><input type="submit" name="submit" value="Add Mailbox"></td></tr>
|
|
</table>
|
|
</form>
|
|
<?php
|
|
print_footer();
|
|
?>
|