Alternc  3.2
Alternc logiel libre pour l'hébergement
 All Data Structures Namespaces Files Functions Variables Pages
webmail-redirect.php
Go to the documentation of this file.
1 <?php
2 /*
3  ----------------------------------------------------------------------
4  AlternC - Web Hosting System
5  Copyright (C) 2000-2012 by the AlternC Development Team.
6  https://alternc.org/
7  ----------------------------------------------------------------------
8  LICENSE
9 
10  This program is free software; you can redistribute it and/or
11  modify it under the terms of the GNU General Public License (GPL)
12  as published by the Free Software Foundation; either version 2
13  of the License, or (at your option) any later version.
14 
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  GNU General Public License for more details.
19 
20  To read the license please visit http://www.gnu.org/copyleft/gpl.html
21  ----------------------------------------------------------------------
22  Purpose of file: listing of mail accounts for one domain.
23  ----------------------------------------------------------------------
24 */
25 
26 require_once("../class/config_nochk.php");
27 
28 
29  $res=$hooks->invoke("hook_admin_webmail");
30 if (($wr=variable_get("webmail_redirect")) && isset($res[$wr]) && $res[$wr]) {
31  $url=$res[$wr];
32 } else {
33  foreach($res as $r) if ($r!==false) { $url=$r; break; }
34 }
35 if ($url) {
36  header("Location: $url");
37 } else {
38  header("Location: /nowebmail");
39 }
40