Feature Requests item #1951926, was opened at 2008-04-25 23:38
Message generated for change (Comment added) made by christian_boltz
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=937967&aid=1951926&group_id=191583
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Interface Improvements (example)
Group: SVN (please specify revision!)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Christian Boltz (christian_boltz)
Assigned to: Nobody/Anonymous (nobody)
Summary: show_custom_colors - several enhancements
Initial Comment:
(SVN r343)
(Combined to a single item because it affects one code section. Can be splitted as needed later.)
While upgrading a production server to the latest SVN version (aka 2.2rc5), I found some things that show_custom_colors could do better:
(1)
$CONF['show_undeliverable'] shows
a) aliases with non-existing local target
b) aliases pointing to an external address
which may cause some confusion.
This should be splitted to
$CONF['show_undeliverable'] for a)
$CONF['show_external_alias'] for b)
(We could also change "possible undeliverable" to "undeliverable".)
(2)
$CONF['vacation_domain'] should be in $CONF['show_undeliverable_exceptions'] by default
(3)
$CONF['show_status_key']='YES' shows all possible markers. I'd like to have the option to only show the _used_ markers to avoid displaying too many items
(4)
$CONF['vacation_domain'] should be part of $CONF['show_custom_domains']. It would be even better if it had an own setting (like $CONF['show_vacation_status']) which would allow a better description text than "delivery to autoreply.domain"
(5)
It should be possible to specify custom legend texts per domain in $CONF['show_custom_domains'].
This could cover the special vacation marker I described above, as well as other cases.
The custom legend texts should support two methods:
a) static text, could also come from lang/*
$text = "foobar";
b) array with translations, with fallback to "default"
$text = array( 'default' => 'english text', 'de' => 'german text');
(6)
$CONF['show_custom_count'] can be dropped - just use count($CONF['show_custom_domains']) instead.
(7)
A marker for mailboxes with non-default alias would also be helpful.
----------------------------------------------------------------------
>Comment By: Christian Boltz (christian_boltz)
Date: 2008-04-26 01:39
Message:
Logged In: YES
user_id=593261
Originator: YES
(8)
Postfix supports a recipient_delimiter (usually "+") which allows to
specify some type of parameter to a mail adress. An example would be
fo...@ex..., which delivers to the fo...@ex... mailbox.
Currently a mail with fo...@ex... is tagged as undeliverable even
if the fo...@ex... mailbox exists.
Proposal: $CONF['recipient_delimiter'] = "+"; (or "" to disable)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=937967&aid=1951926&group_id=191583
|