ISPmail Admin

Download

Current Version

Current version is 0.9.11 of Truesday, June 4th, 2024

  • Fixed: Using MD5 hashes (not recommended!).


On update from 0.9.6, be sure to adjust your database to support quotas:

ALTER TABLE `virtual_users` ADD `quota` BIGINT(11) NOT NULL DEFAULT '0' AFTER `email`;


On update from 0.9.3, be sure to adjust your database as explained here.

ALTER TABLE virtual_users MODIFY password varchar(150) NOT NULL;
UPDATE virtual_users SET password=CONCAT('{PLAIN-MD5}', password);

Changelog

Version 0.9.11; Tuesday, June 4th, 2024

  • Added blacklisting of e-mail addresses not to be used anymore. This is mainly for email addresses that have been 'burned' by having gotten into the spammers' address lists. Adding them to the blacklist prevents you from accidently creating them later again.

Version 0.9.10; Tuesday, November 28th, 2023

  • Fixed: Using MD5 hashes (not recommended!).

Version 0.9.9; Tuesday, January 31st, 2023

  • Fixed: Disabling quotas (config.inc.php) breaks overview page and create account process.

Version 0.9.8; Monday, October 26th, 2020

  • Fixed: Quotas not showing correctly on Overview page (always show as unlimited).

Version 0.9.7; Monday, October 26th, 2020

  • Added support of quotas (config.inc.php) as of the latest "Buster" guide
    (see https://workaround.org/ispmail/buster)
  • On Update, make sure you have adjusted your database accordingly:
    ALTER TABLE `virtual_users` ADD `quota` BIGINT(11) NOT NULL DEFAULT '0' AFTER `email`;
  • Added choice (config.inc.php) of password hashing method: BCRYPT, SHA-256, md5 (last not recommended).
  • Added database connection via socket

Version 0.9.6; Monday, September 24th, 2018

  • Fixed a bug with not verifying domain names when using the "Enter"-key in the input field.
  • New configuration option to spread long lists on multiple "pages": define("IMA_LIST_MAX_ENTRIES", 200)

Version 0.9.5; Friday, July 7th, 2017

  • Fix: SQL-Error on Alias Page with Mysql 5.7 (sql_mode "only_full_group_by")

Version 0.9.4; Friday, June 3rd, 2016

  • Implements the SHA-256 Hashes now used in the Tutorial.
    On update, be sure to adjust your database as explained here.
    ALTER TABLE virtual_users MODIFY password varchar(150) NOT NULL;
    UPDATE virtual_users SET password=CONCAT('{PLAIN-MD5}', password);

Version 0.9.3; Thursday, February 25th, 2015

  • Added "Overview" page showing all e-mail addresses (accounts and aliases)
  • Fixed bug concerning login/cookie in chromium based browsers

Version 0.9.2; Tuesday, March 3rd, 2015

  • Multiple targets for same alias/redirect
    • alias@somewhere.tld => user1@somewhere.tld
    • alias@somewhere.tld => user2@somewhere.tld
    • alias@somewhere.tld => user3@somewhere.else.tld

Version 0.9.1; Thursday, February 19th, 2015

  • Minor bugfix :blush:

Version 0.9; Friday, February 13th, 2015

  • Initial release