2012-01-31 Jason Flatt drupal@oadaeh.net
  * basic_webmail.install, basic_webmail.module: Continued work on upgrading to
    Drupal 7.
    Fixed the message display.

2012-01-30 Jason Flatt drupal@oadaeh.net
  * basic_webmail.install, basic_webmail.module: Continued work on upgrading to
    Drupal 7.
    Fixed some bad programming in _basic_webmail_get_parts_list() (mostly a
    huge lack of enmpty variable and error checking. There will be more to do
    later.
    Refactored the message list code in order to get it to work in Drupal 7.

2012-01-28 Jason Flatt drupal@oadaeh.net
  * basic_webmail.install, basic_webmail.module: Continued work on upgrading to
    Drupal 7.
    Added user id as a function parameter for connecting to the mail server, so
    an admin can modify another user's information and not get a bunch of IMAP
    errors.
    Added back in the removal of the incorrectly named password field.
    Added a check for empty user login id, so we don't overwrite good data with
    bad data.
    Created a new admin category: Message listing settings, and moved the
    related setting from General to there.
    Added the option for the user's account information to pull the login ID
    from the username.
    Created new function to streamline error reporting (not yet in use in most
    places).

2012-01-26 Jason Flatt drupal@oadaeh.net
  * basic_webmail.admin.inc, basic_webmail.common.inc, basic_webmail.edit.inc,
    basic_webmail.list.inc, basic_webmail.view.inc:  Removed files. Changed
    plan of attack:
    * 7.x-1.x is to just upgrade the module to be compatible with Drupal 7.
    * 7.x-2.x will be the refactoring of the code and adding dependencies on
      Views, VBO, etc.
    * 7.x-3.x will add the capability of doing POP3.
    This way, a D7 version gets released sooner, and I can work on the new
    stuff simultaneously.
  * basic_webmail.install, basic_webmail.module:
    Continued work on upgrading to Drupal 7.
    Broke the form fields out of basic_webmail_form_user_profile_form_alter()
    and basic_webmail_form_user_register_form_form_alter() into another
    function (_basic_webmail_form_user_form()) to eliminate code duplication.
    Removed the correction of the incorrectly named password field.
    Fixed the basic_webmail_user_presave() to correctly save the user's
    information.
    Updated remaining database queries, excpet the one that deals with listing
    the messages. I still have to learn the new way of doing table sorts.

2012-01-25 Jason Flatt drupal@oadaeh.net
  * basic_webmail.install, basic_webmail.module, basic_webmail.list.inc:
    Continued work on upgrading to Drupal 7.
    Updated basic_webmail_autocomplete(). Bug fixing still to come.
    Updated a couple of database queries.

2011-09-11 Jason Flatt drupal@oadaeh.net
  * basic_webmail.admin.inc, basic_webmail.common.inc, basic_webmail.edit.inc,
    basic_webmail.info, basic_webmail.install, basic_webmail.list.inc,
    basic_webmail.module, basic_webmail.view.inc: Started upgrade to Drupal 7.
    Broke out the module file into several include files for refactoring.

2011-02-07 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Added missing required parameter for three form
    functions.

2011-01-17 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Changed the order of the parametes of a function
    call to eliminate an error when attepting to re-show a message that was
    replied to.

2010-10-05 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Removed reference to max_file_uploads, as it's only
    in newer versions of PHP.
  * translations/basic_webmail.pot: Created and added to projecct.

2010-09-30 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Changed the _basic_webmail_send_mail_form() function
    parameters to correctly conform to a Drupal form function.

2010-09-14 Jason Flatt drupal@oadaeh.net
  * basic_webmail.info, basic_webmail.install, basic_webmail.module: Completed
    the initial port to Drupal 6.x.

2010-08-31 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Set the default custom date format to be the one
    that was originally hard coded.
    Updated two areas I forgot when changing from the format option from int
    to string.
    Added the administration option of configuring the length of the subject
    in the message list.
    Shrunk the text fields that only held short strings.

2010-08-30 Jason Flatt drupal@oadaeh.net
  * basic_webmail.install: Made variable removal encompassing during uninstall.
  * basic_webmail.module: Added a work around because there is a bug in some
    versions of PHP that returns strings converted with the imap_utf8()
    function in all upper case letters. http://bugs.php.net/bug.php?id=44098
    Pulled date processing of message list out into its own function.
    Added option to specify how the date is displayed on the message listing.

2010-08-27 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Added a fix for dealing with date anomoles.

2009-04-08 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Per laghalt on issue http://drupal.org/node/253458,
    hopefully fixed improper character encoding.

2008-07-20 Jason Flatt drupal@oadaeh.net
  * po/basic_webmail.pot: Added.
  * basic_webmail.module: Fixed erroneous uses of t().

2008-04-18 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Added a check for the PHP version when calling
    imap_open().

2008-04-15 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Added autocomplete feature for automatically
    looking up e-mail addresses of existing users when composing messages.

2008-04-06 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Clean up based on the Code Review module and the
    ./code-style.pl script: Cleaned up some white space. Changed variable
    array keys from [count($stack) - 1] to [$stack_count].

2008-03-27 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Set the defalts for $n_retries of imap_open to 1
    (and $options to 0, since it's before the other) based on this comment
    and my own difficulties connecting to Gmail: 
    http://us3.php.net/manual/en/function.imap-open.php#78097.

2008-03-20 Jason Flatt drupal@oadaeh.net
  * basic_webmail.module: Modified code in the update case of hook_user()
    where e-mail settings were getting erased when not specified.
    Changed the order the username and password are saved to the database.

2008-03-16 Jason Flatt drupal@oadaeh.net
  * Gave it an official version tag.

2007-12-11 Jason Flatt drupal@oadaeh.net
  * Initial release
