--- /dev/null
+<?php
+
+/**
+ * Provides some basic configuration options to the template engine
+ *
+ * @copyright © 1999-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage templates
+ */
+
+
+/**
+ * Indicates what template engine this template set uses.
+ */
+$template_engine = SQ_PHP_TEMPLATE;
+
+
+/**
+ * Required Javascript files for this template set. If a JS file is listed
+ * here, but not listed in the provided js files below, SquirrelMail will use
+ * the file by the same name in the default template directory.
+ */
+$required_js_files = array (
+ 'default.js',
+ );
+
+
--- /dev/null
+<?php
+
+/**
+ * protocol_header.tpl
+ *
+ * Template to create the HTML header for each page.
+ *
+ * The following variables are avilable in this template:
+ * $frames - boolean value indicating if the page being
+ * rendered is a frameset or not
+ * $lang - string indicating current SM interface language
+ * $title - current page title string
+ * $header_tags - string containing text of any tags to be rendered
+ * in the page header (meta tags, style links,
+ * javascript links, etc.)
+ *
+ * @copyright © 1999-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage templates
+ */
+
+/* retrieve the template vars */
+extract($t);
+
+
+if ($frames) { ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
+ "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">
+<?php } else { ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+ "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
+<?php } ?>
+<html<?php if (!empty($lang)) { ?> lang="<?php echo $lang; ?>"<?php } ?>>
+<head>
+<title><?php if (!empty($title)) { ?><?php echo $title ?><?php } ?></title>
+<?php if (!empty($header_tags)) { ?><?php echo $header_tags ?><?php } ?>
+</head>
+
+
--- /dev/null
+<?php
+
+/**
+ * Provides some basic configuration options to the template engine
+ *
+ * @copyright © 1999-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage templates
+ */
+
+
+/**
+ * Indicates what template engine this template set uses.
+ */
+$template_engine = SQ_PHP_TEMPLATE;
+
+
+/**
+ * Required Javascript files for this template set. If a JS file is listed
+ * here, but not listed in the provided js files below, SquirrelMail will use
+ * the file by the same name in the default template directory.
+ */
+$required_js_files = array (
+ 'default.js',
+ 'dtree.js',
+ );
+
+