diff --git a/.gitattributes b/.gitattributes index 1e7c7619..5280837c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -283,19 +283,12 @@ bureau/admin/logo2.png -text bureau/admin/logs_download.php -text bureau/admin/logs_list.php -text bureau/admin/mail_add.php -text -bureau/admin/mail_alias_create.inc.php -text -bureau/admin/mail_alias_doedit.php -text bureau/admin/mail_del.php -text bureau/admin/mail_doadd.php -text bureau/admin/mail_doedit.php -text -bureau/admin/mail_edit.inc.php -text bureau/admin/mail_edit.php -text bureau/admin/mail_list.php -text -bureau/admin/mail_localbox_doedit.php -text -bureau/admin/mail_localbox_edit.inc.php -text bureau/admin/mail_properties.php -text -bureau/admin/mail_redirection_doedit.php -text -bureau/admin/mail_redirection_edit.inc.php -text bureau/admin/mail_undelete.php -text bureau/admin/main.php -text bureau/admin/mem_admin.php -text diff --git a/bureau/admin/mail_alias_create.inc.php b/bureau/admin/mail_alias_create.inc.php deleted file mode 100644 index 01286418..00000000 --- a/bureau/admin/mail_alias_create.inc.php +++ /dev/null @@ -1,58 +0,0 @@ -mail_get_details($mail_id)) { - $error=$err->errstr(); - echo $error; -} -?> -$error
"; -} - -$dom_list = $mail->enum_domains; -?> - diff --git a/bureau/admin/mail_alias_doedit.php b/bureau/admin/mail_alias_doedit.php deleted file mode 100644 index 5c835cd0..00000000 --- a/bureau/admin/mail_alias_doedit.php +++ /dev/null @@ -1,54 +0,0 @@ - -/* - mail_alias_doedit.php, author: squidly - ---------------------------------------------------------------------- - AlternC - Web Hosting System - Copyright (C) 2002 by the AlternC Development Team. - http://alternc.org/ - ---------------------------------------------------------------------- - Based on: - Valentin Lacambre's web hosting softwares: http://altern.org/ - ---------------------------------------------------------------------- - LICENSE - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License (GPL) - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - To read the license please visit http://www.gnu.org/copyleft/gpl.html - ---------------------------------------------------------------------- - Purpose of file: Create a new mail account - ---------------------------------------------------------------------- -*/ -require_once("../class/config.php"); -$fields = array ( - "mail_arg" => array ("request", "string",0), - "mail_id" => array ("request", "integer",0), - "domain" => array ("request", "string",0), - "address_full" => array ("request", "string",0), - "dom_id" => array ("request", "integer",0), - "rcp" =>array("request", "array", "") -); -getFields($fields); - -$alias_retour=array (); -$alias_retour=$mail->create($dom_id,$mail_arg); -//setting up the alias. -if(!$mail_alias->setalias($alias_retour["mail_id"],$address_full)){ -//if fails redirect to creation with error message. -$error=sprintf(_("Alias: %s already created"), $mail_arg); -include("mail_alias_create.inc.php"); -}else{ -//redirection to the properties list. -header ("Location: mail_properties.php?mail_id=$mail_id"); -} - - - - diff --git a/bureau/admin/mail_edit.inc.php b/bureau/admin/mail_edit.inc.php deleted file mode 100644 index 03ef2d8f..00000000 --- a/bureau/admin/mail_edit.inc.php +++ /dev/null @@ -1,111 +0,0 @@ -mail_get_details($mail_id)) { - $error=$err->errstr(); -} -if(isset($error) && $error){ - echo "$error
"; -} - -?> - - - - - - - - diff --git a/bureau/admin/mail_localbox_doedit.php b/bureau/admin/mail_localbox_doedit.php deleted file mode 100644 index 8589f532..00000000 --- a/bureau/admin/mail_localbox_doedit.php +++ /dev/null @@ -1,74 +0,0 @@ - -/* - mail_localbox_doedit.php, author: squidly - ---------------------------------------------------------------------- - AlternC - Web Hosting System - Copyright (C) 2002 by the AlternC Development Team. - http://alternc.org/ - ---------------------------------------------------------------------- - Based on: - Valentin Lacambre's web hosting softwares: http://altern.org/ - ---------------------------------------------------------------------- - LICENSE - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License (GPL) - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - To read the license please visit http://www.gnu.org/copyleft/gpl.html - ---------------------------------------------------------------------- - Purpose of file: Create a new mail account - ---------------------------------------------------------------------- -*/ - - - require_once("../class/config.php"); - - -$fields = array ( - "local" => array ("request", "integer",0), - "mail_id" => array ("request", "integer",0), - "is_local" => array ("request", "integer",0) -); -getFields($fields); -/*si local vaut non = - si boite pas deja locale : ne rien faire - si boite locale: suprimmer entré dans mailbox - niveau system virer le dossier. - si local vaut oui = - si boite pas deja local: ajout entré table mailbox - si boite locale: dire a l'utilisateur que c'est deja le cas. -*/ -print_r($is_local); -//if we are already processing a localy hosted mail -if(isset($is_local) && intval($is_local) == 1){ - //if user chose yes to localbox - if($local == 1){ - $error = _("Already Activated"); - header ("Location: /mail_properties.php?mail_id=$mail_id"); - }else{ - $mail_localbox->unset_localbox($mail_id); - header ("Location: /mail_properties.php?mail_id=$mail_id"); - } -}elseif( intval($is_local) == 0 ){ - - if($local == 0){ - $error = _("Already disactivated"); - header ("Location: /mail_properties.php?mail_id=$mail_id"); - }else{ - //echo "processing mail to localbox"; - $mail_localbox->set_localbox($mail_id); - header ("Location: /mail_properties.php?mail_id=$mail_id"); - } - - - -} - - diff --git a/bureau/admin/mail_localbox_edit.inc.php b/bureau/admin/mail_localbox_edit.inc.php deleted file mode 100644 index 2806d1e8..00000000 --- a/bureau/admin/mail_localbox_edit.inc.php +++ /dev/null @@ -1,73 +0,0 @@ -mail_get_details($mail_id); -if (!$mail_details) die ("error on mail details"); - -if (isset($error) && $error) { - echo "
$error
"; -} - -echo "