Project Description:
To customise a registration page for webmail
package. the basic elements of the form have been
created but we need some addition functionality
included.
Additional Fields:
Name, Email, Favourite Pub, Age, Mobile.
And we also need a confirmation email sent to their
exisitng email, including their username passsword
etc.
Here's a link to what's been done so far
The email package is roundcube
I have included some info sent by the mail hosting
company below. To show what has been developed so far and also the exisitng pages.
In order for me to consider yout tender I need a examples of such registration developemnt. Not s]just " I can do it" emails..
Below is information on the dtatabase connection
==================================
>
> All of the users are managed through MySQL. To
> create a user requires
> one SQL INSERT query. You should also send that user
> a welcome email so
> that everything's properly initialized when they
> first try to login -
> their home directory is created automatically by the
> mail software when
> the first message is received. To remove a user,
> DELETE that row from
> the table - this won't delete their messages.
>
> The MySQL database name is 'maildb', and the table
> is 'users'. The table
> is formatted as follows:
>
>
+---------+----------------------+------+-----+---------+-------+
> | Field | Type | Null | Key |
> Default | Extra |
>
+---------+----------------------+------+-----+---------+-------+
> | id | varchar(128) | | PRI |
> | |
> | address | varchar(128) | | UNI |
> | |
> | crypt | varchar(128) | | |
> | |
> | clear | varchar(128) | | |
> | |
> | name | varchar(128) | | |
> | |
> | uid | smallint(5) unsigned | | | 501
> | |
> | gid | smallint(5) unsigned | | | 501
> | |
> | home | varchar(128) | | | /
> | |
> | domain | varchar(128) | | |
> | |
> | maildir | varchar(255) | | |
> | |
> | imapok | tinyint(3) unsigned | | | 1
> | |
> | bool1 | tinyint(3) unsigned | | | 1
> | |
> | bool2 | tinyint(3) unsigned | | | 1
> | |
>
+---------+----------------------+------+-----+---------+-------+
>
>
>
>
> roundcube/ is the webmail
> interface you'll
> probably want to use. It's very simple and web 2.0.
> One gotcha: you have
> to double-click on an email in the header list to
> view it which is a
> little counter-intuitive for a web application.
> --