[go: up one dir, main page]

File: index.php

package info (click to toggle)
avelsieve 1.9.9-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,560 kB
  • ctags: 1,733
  • sloc: php: 7,397; sh: 100; makefile: 22
file content (22 lines) | stat: -rw-r--r-- 611 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
 * User-friendly interface to SIEVE server-side mail filtering.
 * Plugin for Squirrelmail 1.4+
 *
 * Licensed under the GNU GPL. For full terms see the file COPYING that came
 * with the Squirrelmail distribution.
 *
 * @version $Id: index.php 935 2008-07-04 10:25:39Z avel $
 * @author Alexandros Vellis <avel@users.sourceforge.net>
 * @copyright 2004 The SquirrelMail Project Team, Alexandros Vellis
 * @package plugins
 * @subpackage avelsieve
 */

/** Includes */
require_once('../../functions/strings.php');
$location = get_location();
header("Location: $location/src/webmail.php");
exit();

?>