From 31467479b53e290d12af82ea06e8093e421849a1 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Mon, 9 Dec 2013 23:42:05 +0000 Subject: [PATCH] CHANGELOG.TXT: - whitespace fixes git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1608 a1433add-5e2c-0410-b055-b7f2511e0802 --- CHANGELOG.TXT | 121 +++++++++++++++++++++++++------------------------- 1 file changed, 60 insertions(+), 61 deletions(-) diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index 948952dc..c3ff8892 100644 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,10 +1,10 @@ -# Postfix Admin -# -# LICENSE -# This source file is subject to the GPL license that is bundled with -# this package in the file LICENSE.TXT. -# -# Further details on the project are available at http://postfixadmin.sf.net +# Postfix Admin +# +# LICENSE +# This source file is subject to the GPL license that is bundled with +# this package in the file LICENSE.TXT. +# +# Further details on the project are available at http://postfixadmin.sf.net # # Last update: # $Id$ @@ -13,7 +13,6 @@ Version ***svn*** - 2013/12/09 - SVN r*** ----------------------------------- - Summary of major changes: - new command-line interface "postfixadmin-cli" - major rewrite: @@ -29,7 +28,7 @@ Version ***svn*** - 2013/12/09 - SVN r*** - redesign login page, list and edit pages (goodbye, green!) and make them wider - several new config options and changed defaults - NOTE: changes from the 2.3.x releases also apply to this version - + new config options: - $CONF['language_hook'] Hook function to override or add translations to $PALANG. @@ -47,7 +46,7 @@ Version ***svn*** - 2013/12/09 - SVN r*** - $CONF['theme_custom_css'] - to add some custom CSS without editing the default CSS file - $CONF['motd_*'] - replaces motd*.txt - + changed config defaults (with their new default value): - $CONF['database_type'] = 'mysqli'; - $CONF['dovecotpw'] = "/usr/sbin/doveadm pw"; @@ -64,12 +63,12 @@ Version ***svn*** - 2013/12/09 - SVN r*** IMPORTANT: If set, this will be used as mail sender for all mails (2.3.x used the currently logged in admin's username in most cases). $CONF['admin_email'] = '' will match the 2.3.x behaviour. - + removed config options: - $CONF['min_password_length'] - now handled in /.{5}/ in $CONF['password_validation'] - $CONF[postfix_admin_url] - relative paths are now used everywhere - + list-virtual.php: - display percentage of quota usage - display alias domains less confusing (using From/To) @@ -84,12 +83,12 @@ Version ***svn*** - 2013/12/09 - SVN r*** - fix: don't mark mailboxes with vacation active as undeliverable - fix: undeliverable targets were not flagged if another target pointed to a domain in $CONF[show_undeliverable_exceptions] - + fetchmail.php, fetchmail.pl: - add sslcertck, sslcertpath, sslfingerprint fields/check (sslcertpath and sslfingerprint require $CONF[fetchmail_extra_options] because they don't have input validation) - + functions.inc.php - allowed_quota: if $CONF[quota] == NO, just return 0 (unlimited) - authentification_get_username() - honor POSTFIXADMIN_SETUP to avoid @@ -132,7 +131,7 @@ Version ***svn*** - 2013/12/09 - SVN r*** - no longer escape_string() the result. This fixes http://sourceforge.net/p/postfixadmin/bugs/218/ - for 'system' encryption, use full hashed password as salt - https://sourceforge.net/p/postfixadmin/bugs/2/ + https://sourceforge.net/p/postfixadmin/bugs/2/ - dovecot:*: - add support for dovecot *-CRYPT passwords (needs dovecot >= 2.1) - allow "." in dovecot method (to allow a suffix like ".b64") @@ -159,27 +158,27 @@ Version ***svn*** - 2013/12/09 - SVN r*** - get_admin_properties() - get_mailbox_properties() - get rid of global $table_* variables, use table_by_key() instead - + PFAHandler.php: - parent class for all *Handler classes - contains code shared between all classes - + AdminHandler.php: - Handler class for admins - for now, set the superadmin column and add "ALL" in domain_admins to keep the database backwards-compatible with 2.3.x - + AdminpasswordHandler.php: - used for the "change password" form for admins - + DomainHandler.php - handler class for domains - delete(): do not allow to delete a domain if it is an alias domain target - + AliasdomainHandler.php: - handler class for alias domains - alias domains can now be edited - + AliasHandler.php: - rewrite based on PFAHandler - we even get a "deliver to local mailbox" checkbox :-) @@ -191,7 +190,7 @@ Version ***svn*** - 2013/12/09 - SVN r*** - is_mailbox_alias() - is_vacation_address() - hasAliasRecord() - + MailboxHandler (previously named UserHandler in 2.3): - rewrite based on PFAHandler - drop old __construct(), view() and change_pass() @@ -201,27 +200,27 @@ Version ***svn*** - 2013/12/09 - SVN r*** - always display correct available quota (using allowed_quota()) - do not escape the password coming from $_POST. Fixes http://sourceforge.net/p/postfixadmin/bugs/218/ - + VacationHandler: - rewrite based on PFAHandler (not useable yet) - + ------------------------------------------------------------------------ - + vacation: - + - add ability to choose activation date, end date and reply interval for vacation message *** reply interval needs rework, *** http://sourceforge.net/p/postfixadmin/patches/111/ - + vacation.pl - encode subject https://sourceforge.net/p/postfixadmin/bugs/272/ https://sourceforge.net/p/postfixadmin/patches/119/ - - - - + + + + r1373 | GingerDog | 2012-04-19 23:55:36 +0200 (Do, 19. Apr 2012) | 1 Zeile M /trunk/VIRTUAL_VACATION/vacation.pl M /trunk/config.inc.php @@ -229,28 +228,28 @@ Version ***svn*** - 2013/12/09 - SVN r*** M /trunk/templates/vacation.tpl M /trunk/upgrade.php M /trunk/vacation.php - + Merge jan-kruis's vacation interval reply behaviour - see http://sourceforge.net/p/postfixadmin/patches/111/ - + M /trunk/VIRTUAL_VACATION/vacation.pl - - add a friendly from address to vacation messages ("Vacation Service"); + + add a friendly from address to vacation messages ("Vacation Service"); probably needs more work to beautify it though...; - + change error handling if we cannot send the reply to be hopefully more robust - + - add $smtp_client config option to specify the helo name - added custom noreply detection - + ------------------------------------------------------------------------ - + Config.php - new class to store $CONF - also used to store $PALANG texts (Config::Lang()) - contains functions to read config entries in various ways (bool etc.) - + edit.php - generic edit page for everything (admins, domains, mailboxes, aliases, ...) - use ?table= parameter to decide what will be edited (basically $tableHandler) @@ -263,13 +262,13 @@ Version ***svn*** - 2013/12/09 - SVN r*** - set $form_fields and $id_field later (after $hander->init()) - needed for AliasHandler to decide if goto_mailbox should be displayed - only set $values if a field is editable and displayed in the form - + editform.tpl: - generic edit form template, uses $struct to render the form - implement handling of 'list' fields (