Alternc  latest
Alternc logiel libre pour l'hébergement
m_squirrelmail.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: Manage Squirrelmail webmail configuration
23  ----------------------------------------------------------------------
24 */
25 
26 /**
27 * This class handle squirrelmail's webmail
28 * hook the main panel page to add a link to the webmail
29 */
31 
32  /* ----------------------------------------------------------------- */
33  /** Hook called by the homepage or the /webmail link
34  * to redirect the user to a known webmail url.
35  * the variable 'webmail_redirect' tells which webmail has the priority.
36  * @return string the URL of the webmail
37  */
38  function hook_admin_webmail() {
39  global $db;
40  // Search for the domain where the panel is hosted, then search for a webmail in it.
41  $i=2;
42  if (!empty($_SERVER["HTTP_HOST"])) {
43  do { // for each domain part (search panel.alternc.org then alternc.org then org, if the current panel is at www.panel.alternc.org)
44  $expl=explode(".",$_SERVER["HTTP_HOST"],$i);
45  if (count($expl)>=2) {
46  list($host,$dompart)=$expl;
47  // We search for a 'squirrelmail' subdomain in that domain
48  $db->query("SELECT * FROM sub_domaines s WHERE s.domaine= ? AND s.type='squirrelmail';",array($dompart));
49  if ($db->next_record()) {
50  $domain=$db->Record;
51  return "http://".$domain["sub"].(($domain["sub"])?".":"").$domain["domaine"];
52  }
53  }
54  $i++;
55  } while (strpos($dompart,'.')!==false);
56  }
57 
58  // not found: search for a webmail in the admin user account
59  $db->query("SELECT * FROM sub_domaines s WHERE s.compte=2000 AND s.type='squirrelmail';");
60  if ($db->next_record()) {
61  $domain=$db->Record;
62  return "http://".$domain["sub"].(($domain["sub"])?".":"").$domain["domaine"];
63  }
64 
65  }
66 
67 
68  /* ----------------------------------------------------------------- */
69  /** Hook called when an email is REALLY deleted (by the cron, not just in the panel)
70  * @param mail_id integer the ID of the mail in the AlternC database
71  * @param fullmail string the deleted mail himself in the form of john@domain.tld
72  * @return boolean|null
73  */
74  function hook_mail_delete_for_real($mail_id, $fullmail) {
75  $fullmail2 = str_replace('@','_',$fullmail); // fullname with _ instead of @ (compatibility)
76  $todel = array (
77  "$fullmail.abook",
78  "$fullmail.pref",
79  "$fullmail2.abook",
80  "$fullmail2.pref");
81 
82  foreach ( $todel as $t ) {
83  if (file_exists("/var/lib/squirrelmail/data/$t") ) {
84  @unlink("/var/lib/squirrelmail/data/$t");
85  }
86  }
87  } // hook_mail_delete_for_real
88 
89 
90 
91 } /* Class Squirrelmail */
92 
global $db
Definition: bootstrap.php:26
This class handle squirrelmail's webmail hook the main panel page to add a link to the webmail.
hook_admin_webmail()
Hook called by the homepage or the /webmail link to redirect the user to a known webmail url.
hook_mail_delete_for_real($mail_id, $fullmail)
Hook called when an email is REALLY deleted (by the cron, not just in the panel)
$host
Definition: config.php:71
$domain
Definition: dom_import.php:36
$mail_id
foreach($domaines_user as $domaine) $t
$i