user mailing list
diff --git a/_projectCommon.php b/_projectCommon.php
index 5316add..97570c4 100755
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -18,7 +18,7 @@
 $Nav->addCustomNav("Related Projects", "projects.php", "_self", 2);

 $Nav->addCustomNav("Contributors", "contributors.php", "_self", 2);

 #$Nav->addCustomNav("Wiki", "http://wiki.eclipse.org/Henshin", "_self", 2);

-$Nav->addCustomNav("Mailing List", "https://dev.eclipse.org/mailman/listinfo/henshin-dev", "_self", 2);

+$Nav->addCustomNav("Mailing Lists", "mail.php", "_self", 2);

 $Nav->addCustomNav("Javadoc", "http://download.eclipse.org/modeling/emft/henshin/javadoc/nightly/", "_self", 2);

 $Nav->addCustomNav("FAQ", "http://wiki.eclipse.org/Henshin_FAQ", "_self", 2);

 ?>

diff --git a/mail.php b/mail.php
new file mode 100644
index 0000000..5a57888
--- /dev/null
+++ b/mail.php
@@ -0,0 +1,47 @@
+<?php

+

+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");

+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); 

+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); 

+

+$App = new App();

+$Nav = new Nav();

+$Menu = new Menu();

+

+include($App->getProjectCommon());

+

+#

+# Begin: page-specific settings.  Change these. 

+$pageTitle 	= "Henshin - Mailing Lists";

+$pageKeywords	= "EMF, Henshin, model transformation, projects";

+$pageAuthor	= "Christian Krause";

+	

+# Add page-specific Nav bars here

+# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)

+# $Nav->addNavSeparator("My Page Links", 	"downloads.php");

+# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);

+# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);

+# End: page-specific settings

+#

+

+$html = <<<EOHTML

+

+<div id="maincontent">

+<div id="midcolumn">

+

+<h1>$pageTitle</h1>

+

+<ul>
+<li><a href="https://dev.eclipse.org/mailman/listinfo/henshin-user">User Mailing List (henshin-user)</a></li>
+<li><a href="https://dev.eclipse.org/mailman/listinfo/henshin-dev">Developer Mailing List (henshin-dev)</a></li>
+</ul>
+

+</div>

+</div>

+

+EOHTML;

+

+# Generate the web page

+$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);

+

+?>