CUSTOM WELCOME/LOGIN PAGE

From Scalix Wiki
Revision as of 09:54, 10 January 2007 by Fraserm (Talk | contribs)

Jump to: navigation, search

In order to customize the welcome/login page you should understand that the page is (initially) generated on-demand when a user visits the webmail url. We need to create a static page that can perform the same tasks that this dynamic creation does. In Scalix 10 there was an Admin Resource Kit which included a static webpage to do this. This has not been released for Scalix 11. We can use the page from Scalix 10 for the basis of the customization in Scalix 11.

Let's review the Scalix 10 "default.html" so that you understand what it is doing.

You can change the title between <title> </title> in the head of the webpage:

%CODE{html}% <html>

 <head>
   <title>The Best Webmail System </title>
   <style type="text/css">

input, span {

 font-family:helvetica, sans-serif;
 font-size:11px;
 color:black;
 font-weight:normal;
 font-style:normal;

}

span {

 cursor:default;

}

a:link, a:visited, a:active {

 color:#BB0000;
 text-decoration:none;

}

a:hover {

 color:#BB0000;
 text-decoration:underline;

}

   </style>

%ENDCODE%

The following section is the browser detection and other functions. These are essentially to the proper operation of the Webmail AJAX client. It is not recommended to modify these. %CODE{html}%

   <script type="text/javascript" src="/webmail/brwsniff.js"></script>
   <script type="text/javascript" src="/webmail/fugu.js"></script>
   <script type="text/javascript" src="/webmail/index.js"></script>
   <script type="text/javascript">
     </script>
 </head>

%ENDCODE%

More to come...