#!/usr/bin/perl

print "Content-Type: Text/HTML\n\n";

use CGI ':standard';
use Vpanel 1.00;
require $header;
require $accountinfo;

$domainname = find_domain ($mainuser);

# Define the tab which appears to the front
$tab_section = $tabnum_email;

# Output the content associated with this tab
print "<body class=section-$tab_section>";

# display tabs
require $tabdisplay;

print_header("Deletion of your 'multi-drop' ('catch-all') email account for $domainname");

print qq!

Clicking on the submit button below will remove your multidrop account. If they do not exist, the three default email addresses
( info\@$domainname, abuse\@$domainname, postmaster\@$domainname ) will be created and attached to your main user $mainuser.<BR>

<form class=text action=/$script_bin/$confirm_delete_multidrop method=post>

!;
print_end_of_form();

require $footer;
