postfixadmin-tracker Mailing List for PostfixAdmin (Page 35)
Brought to you by:
christian_boltz,
gingerdog
You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(67) |
Nov
(83) |
Dec
(47) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(57) |
Feb
(15) |
Mar
(21) |
Apr
(38) |
May
(27) |
Jun
(38) |
Jul
(35) |
Aug
(50) |
Sep
(8) |
Oct
(9) |
Nov
(59) |
Dec
(59) |
| 2009 |
Jan
(27) |
Feb
(42) |
Mar
(63) |
Apr
(46) |
May
(26) |
Jun
(25) |
Jul
(40) |
Aug
(19) |
Sep
(17) |
Oct
(35) |
Nov
(26) |
Dec
(21) |
| 2010 |
Jan
(11) |
Feb
(19) |
Mar
(40) |
Apr
(25) |
May
(23) |
Jun
(17) |
Jul
(10) |
Aug
(18) |
Sep
(21) |
Oct
(12) |
Nov
(10) |
Dec
(22) |
| 2011 |
Jan
(30) |
Feb
(23) |
Mar
(23) |
Apr
(38) |
May
(32) |
Jun
(19) |
Jul
(20) |
Aug
(36) |
Sep
(11) |
Oct
(28) |
Nov
(4) |
Dec
(4) |
| 2012 |
Jan
(6) |
Feb
(3) |
Mar
(16) |
Apr
(28) |
May
(29) |
Jun
(10) |
Jul
(2) |
Aug
(3) |
Sep
|
Oct
(13) |
Nov
(1) |
Dec
(1) |
| 2013 |
Jan
(11) |
Feb
(7) |
Mar
(29) |
Apr
(2) |
May
(3) |
Jun
(15) |
Jul
(8) |
Aug
(5) |
Sep
(5) |
Oct
(4) |
Nov
(27) |
Dec
(81) |
| 2014 |
Jan
(12) |
Feb
(13) |
Mar
(5) |
Apr
|
May
(41) |
Jun
(16) |
Jul
(7) |
Aug
(10) |
Sep
(24) |
Oct
(50) |
Nov
|
Dec
(2) |
| 2015 |
Jan
(5) |
Feb
(2) |
Mar
(7) |
Apr
(20) |
May
(1) |
Jun
(3) |
Jul
(12) |
Aug
(1) |
Sep
(17) |
Oct
(5) |
Nov
(20) |
Dec
(10) |
| 2016 |
Jan
(10) |
Feb
(11) |
Mar
(22) |
Apr
(30) |
May
(33) |
Jun
(3) |
Jul
|
Aug
(12) |
Sep
(20) |
Oct
(11) |
Nov
(15) |
Dec
(8) |
| 2017 |
Jan
(1) |
Feb
(11) |
Mar
(10) |
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
|
Dec
(3) |
| 2018 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
|
May
(4) |
Jun
(2) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: SourceForge.net <no...@so...> - 2009-05-23 10:12:22
|
Patches item #2795780, was opened at 2009-05-23 12:12 Message generated for change (Tracker Item Submitted) made by soster You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937966&aid=2795780&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: Core Group: SVN (please specify revision!) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andrea Soster (soster) Assigned to: Nobody/Anonymous (nobody) Summary: Add support for "cascading" domain aliases Initial Comment: This patch add support for aliases of domains which are an alias for another domain, if configured the common scenario is: domainA -> domainB -> domainC Applies to SVN 664 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937966&aid=2795780&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-23 09:26:41
|
Bugs item #2795764, was opened at 2009-05-23 11:26 Message generated for change (Tracker Item Submitted) made by soster You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2795764&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: Database Group: SVN (please specify revision!) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andrea Soster (soster) Assigned to: Nobody/Anonymous (nobody) Summary: index name versus table name collision on postgres Initial Comment: When upgrading to DB version 655 (from SVN 664), postfixadmin will try to create an index named "alias_domain" on the table alias, for field domain: db_query_parsed(_add_index('alias', 'domain', 'domain')); this collides with the table named "alias_domain". we could add an "index_" prefix on postgres indexes: Index: upgrade.php =================================================================== --- upgrade.php (revision 664) +++ upgrade.php (working copy) @@ -229,7 +229,7 @@ if ($CONF['database_type'] == 'mysql' || $CONF['database_type'] == 'mysqli' ) { return "ALTER TABLE $table ADD INDEX `$indexname` ( `$fieldlist` )"; } elseif($CONF['database_type'] == 'pgsql') { - $pgindexname = $table . "_" . $indexname; + $pgindexname = "index_" . $table . "_" . $indexname; return "CREATE INDEX $pgindexname ON $table($fieldlist);"; # Index names are unique with a DB for PostgreSQL } else { echo "Sorry, unsupported database type " . $conf['database_type']; ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2795764&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-22 02:58:19
|
Feature Requests item #2332595, was opened at 2008-11-24 01:15 Message generated for change (Comment added) made by bjornnilsen You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2332595&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: add "show password" link for mailboxes Initial Comment: SVN r482 introduced showing passwords in edit-mailbox.php - but in a quite broken way because it relied on an browser extension to change the stars in the password field to readable text. r482 was therefore reverted. We should add this feature in a way that works for everybody. (Needless to say that this is only useful for non-encrypted passwords ;-) Some sniplets and ideas from the mailinglist: add a "show password" link (with a $CONF setting to enable it, default should be disabled) which displays the password somewhere (using flash_info or a alert() feeded with a AJAX request) This would have some advantages: - it works in every browser and does not depend on special browser extensions - it only transfers the password on request - which reduces the risk (and number) of passwords in browser cache etc. a lot - it would easily allow to mail a notification to the user, which might be required by some people/companies for privacy or policy reasons > (So far, Postfixadmin is AJAX free, perhaps it should stay this way?) I don't want to do "big" things with AJAX. But I don't see a problem in using something like alert($password_fetched_by_AJAX_request>) The fallback could be that the "show password" link uses flash_info for this - with the disadvantage of causing a page reload (and possibly loose changes). ---------------------------------------------------------------------- Comment By: Bjorn (bjornnilsen) Date: 2009-05-22 14:58 Message: I have a requirement for this feature and I was able to implement is very simply. I have tried to keep the changes to an absolute minimum so that I can easily add it into new releases as they come out. I was very impressed at how simple it was to add this feature. I guess this shows postfixadmin has been designed very well :) ALTER TABLE `mailbox` ADD `clear_password` VARCHAR( 255 ) NOT NULL ; vi edit-mailbox.php FIND: $tName = $user_details['name']; ADD: $tClearPassword = $user_details['clear_password']; FIND: $formvars['password'] = pacrypt($fPassword); ADD: $formvars['clear_password'] = $fPassword; vi templates/edit-mailbox.php FIND: <tr> <td><?php print $PALANG['pEdit_mailbox_username']; ?></td> <td><?php print $fUsername; ?></td> <td><?php print $pEdit_mailbox_username_text; ?></td> </tr> ADD: <tr> <td>Password</td> <td><?php print $tClearPassword; ?></td> <td></td> </tr> ---------------------------------------------------------------------- Comment By: Pavel Volkovitskiy (olfway) Date: 2009-03-03 22:35 Message: why would you open edit-mailbox if you don't want to change name/password? so user should be notified if someone open it mailbox in edit mode if you care about security you should use https to avoid passwords sniffing also i'm not sure that you can copy password from js alert box the real issue was only missing check if password stored in clear text or not also, you can't always change password for user b/c then you will have to change settings on every users pc/gadget ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2332595&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-21 15:07:39
|
Feature Requests item #2794867, was opened at 2009-05-21 17:07 Message generated for change (Tracker Item Submitted) made by ruede2000 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2794867&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: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Ruede (ruede2000) Assigned to: Nobody/Anonymous (nobody) Summary: alias-create domain list dropdown menu Initial Comment: hi, i would like to have a dropdown menu with all the domains listed for one admin so that the alias-create only works within a few domains and not any domain/mail address. see picture: http://imagebin.ca/view/rF6gKr.html greetings ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2794867&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-20 07:41:12
|
Bugs item #2794247, was opened at 2009-05-20 01:41 Message generated for change (Tracker Item Submitted) made by wvolz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2794247&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: Database Group: v 2.3 Status: Open Resolution: None Priority: 5 Private: No Submitted By: wizard (wvolz) Assigned to: Nobody/Anonymous (nobody) Summary: New accounts are not shown when welcome email is not sent Initial Comment: The database query used when "vacation_control_admin" and "used_quotas" are enabled will not show a new user if the admin unchecks the send welcome email option. In particular the issue is that "quota/storage" doesn't exist. Query for reference: $query = "SELECT $table_mailbox.*, $table_vacation.active AS v_active, $table_quota.current FROM $table_mailbox LEFT JOIN $table_vacation ON $table_mailbox.username=$table_vacation.email LEFT JOIN $table_quota ON $table_mailbox.username=$table_quota.username WHERE $table_mailbox.domain ='$fDomain' AND $table_quota.path='quota/storage' ORDER BY $table_mailbox.username LIMIT $page_size OFFSET $fDisplay"; ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2794247&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-18 18:35:41
|
Bugs item #2793458, was opened at 2009-05-18 13:44 Message generated for change (Comment added) made by roquesao You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2793458&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: Vacation Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: roque moy (roquesao) Assigned to: Nobody/Anonymous (nobody) Summary: bad transport type: user=vacation Initial Comment: i can't configure vacations , my master.cf has this line: vacation unix - n n - - pipe flags=Rq user=vacation argv=/var/spool/vacation/vacation.pl -f ${sender} -- ${recipient} in /var/log/mail.log postfix/master[5154]: fatal: /etc/postfix/master.cf: line 94: bad transport type: user=vacation the file vacation exists in var/spool/vacation/ helpme please !!! excuseme my english , i am from argentina . thanks ---------------------------------------------------------------------- >Comment By: roque moy (roquesao) Date: 2009-05-18 15:35 Message: hello was all on one line, which will not be the problem ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2009-05-18 15:24 Message: Hi, Make sure it's all on one line. If you have a line break, the following line MUST start with whitespace. David. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2793458&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-18 18:24:09
|
Bugs item #2793458, was opened at 2009-05-18 16:44 Message generated for change (Comment added) made by gingerdog You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2793458&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: Vacation Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: roque moy (roquesao) Assigned to: Nobody/Anonymous (nobody) Summary: bad transport type: user=vacation Initial Comment: i can't configure vacations , my master.cf has this line: vacation unix - n n - - pipe flags=Rq user=vacation argv=/var/spool/vacation/vacation.pl -f ${sender} -- ${recipient} in /var/log/mail.log postfix/master[5154]: fatal: /etc/postfix/master.cf: line 94: bad transport type: user=vacation the file vacation exists in var/spool/vacation/ helpme please !!! excuseme my english , i am from argentina . thanks ---------------------------------------------------------------------- >Comment By: GingerDog (gingerdog) Date: 2009-05-18 18:24 Message: Hi, Make sure it's all on one line. If you have a line break, the following line MUST start with whitespace. David. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2793458&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-18 16:44:37
|
Bugs item #2793458, was opened at 2009-05-18 13:44 Message generated for change (Tracker Item Submitted) made by roquesao You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2793458&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: Vacation Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: roque moy (roquesao) Assigned to: Nobody/Anonymous (nobody) Summary: bad transport type: user=vacation Initial Comment: i can't configure vacations , my master.cf has this line: vacation unix - n n - - pipe flags=Rq user=vacation argv=/var/spool/vacation/vacation.pl -f ${sender} -- ${recipient} in /var/log/mail.log postfix/master[5154]: fatal: /etc/postfix/master.cf: line 94: bad transport type: user=vacation the file vacation exists in var/spool/vacation/ helpme please !!! excuseme my english , i am from argentina . thanks ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2793458&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-14 00:03:25
|
Bugs item #2790969, was opened at 2009-05-13 03:07 Message generated for change (Settings changed) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2790969&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 (example) Group: v 2.3 Status: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Daniel Cournoyer (myrandor) Assigned to: Nobody/Anonymous (nobody) Summary: Overview is mixing disabled and unlimited Initial Comment: In the file /templates/list-virtual.php, line 10 to 15, it is showing: if ($limit['aliases'] == 0) $limit['aliases'] = $PALANG['pOverview_disabled']; if ($limit['mailboxes'] == 0) $limit['mailboxes'] = $PALANG['pOverview_disabled']; if ($limit['maxquota'] == 0) $limit['maxquota'] = $PALANG['pOverview_disabled']; if ($limit['aliases'] < 0) $limit['aliases'] = $PALANG['pOverview_unlimited']; if ($limit['mailboxes'] < 0) $limit['mailboxes'] = $PALANG['pOverview_unlimited']; if ($limit['maxquota'] < 0) $limit['maxquota'] = $PALANG['pOverview_unlimited']; But is should be: if ($limit['aliases'] < 0) $limit['aliases'] = $PALANG['pOverview_disabled']; if ($limit['mailboxes'] < 0) $limit['mailboxes'] = $PALANG['pOverview_disabled']; if ($limit['maxquota'] < 0) $limit['maxquota'] = $PALANG['pOverview_disabled']; if ($limit['aliases'] == 0) $limit['aliases'] = $PALANG['pOverview_unlimited']; if ($limit['mailboxes'] == 0) $limit['mailboxes'] = $PALANG['pOverview_unlimited']; if ($limit['maxquota'] == 0) $limit['maxquota'] = $PALANG['pOverview_unlimited']; ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2009-05-14 02:03 Message: Thanks for your report! Fixed in SVN r656. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2790969&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-14 00:03:10
|
Bugs item #2790969, was opened at 2009-05-13 03:07 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2790969&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 (example) Group: v 2.3 >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Daniel Cournoyer (myrandor) Assigned to: Nobody/Anonymous (nobody) Summary: Overview is mixing disabled and unlimited Initial Comment: In the file /templates/list-virtual.php, line 10 to 15, it is showing: if ($limit['aliases'] == 0) $limit['aliases'] = $PALANG['pOverview_disabled']; if ($limit['mailboxes'] == 0) $limit['mailboxes'] = $PALANG['pOverview_disabled']; if ($limit['maxquota'] == 0) $limit['maxquota'] = $PALANG['pOverview_disabled']; if ($limit['aliases'] < 0) $limit['aliases'] = $PALANG['pOverview_unlimited']; if ($limit['mailboxes'] < 0) $limit['mailboxes'] = $PALANG['pOverview_unlimited']; if ($limit['maxquota'] < 0) $limit['maxquota'] = $PALANG['pOverview_unlimited']; But is should be: if ($limit['aliases'] < 0) $limit['aliases'] = $PALANG['pOverview_disabled']; if ($limit['mailboxes'] < 0) $limit['mailboxes'] = $PALANG['pOverview_disabled']; if ($limit['maxquota'] < 0) $limit['maxquota'] = $PALANG['pOverview_disabled']; if ($limit['aliases'] == 0) $limit['aliases'] = $PALANG['pOverview_unlimited']; if ($limit['mailboxes'] == 0) $limit['mailboxes'] = $PALANG['pOverview_unlimited']; if ($limit['maxquota'] == 0) $limit['maxquota'] = $PALANG['pOverview_unlimited']; ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2009-05-14 02:03 Message: Thanks for your report! Fixed in SVN r656. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2790969&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-13 01:08:04
|
Bugs item #2790969, was opened at 2009-05-12 21:07 Message generated for change (Tracker Item Submitted) made by myrandor You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2790969&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 (example) Group: v 2.3 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Daniel Cournoyer (myrandor) Assigned to: Nobody/Anonymous (nobody) Summary: Overview is mixing disabled and unlimited Initial Comment: In the file /templates/list-virtual.php, line 10 to 15, it is showing: if ($limit['aliases'] == 0) $limit['aliases'] = $PALANG['pOverview_disabled']; if ($limit['mailboxes'] == 0) $limit['mailboxes'] = $PALANG['pOverview_disabled']; if ($limit['maxquota'] == 0) $limit['maxquota'] = $PALANG['pOverview_disabled']; if ($limit['aliases'] < 0) $limit['aliases'] = $PALANG['pOverview_unlimited']; if ($limit['mailboxes'] < 0) $limit['mailboxes'] = $PALANG['pOverview_unlimited']; if ($limit['maxquota'] < 0) $limit['maxquota'] = $PALANG['pOverview_unlimited']; But is should be: if ($limit['aliases'] < 0) $limit['aliases'] = $PALANG['pOverview_disabled']; if ($limit['mailboxes'] < 0) $limit['mailboxes'] = $PALANG['pOverview_disabled']; if ($limit['maxquota'] < 0) $limit['maxquota'] = $PALANG['pOverview_disabled']; if ($limit['aliases'] == 0) $limit['aliases'] = $PALANG['pOverview_unlimited']; if ($limit['mailboxes'] == 0) $limit['mailboxes'] = $PALANG['pOverview_unlimited']; if ($limit['maxquota'] == 0) $limit['maxquota'] = $PALANG['pOverview_unlimited']; ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2790969&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-07 23:45:00
|
Patches item #2567466, was opened at 2009-02-05 09:53 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937966&aid=2567466&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: Core Group: SVN (please specify revision!) Status: Closed >Resolution: Rejected Priority: 5 Private: No Submitted By: Fabio Bonelli (fabiobon) Assigned to: Nobody/Anonymous (nobody) Summary: Create alias even if there is a mailbox with that name Initial Comment: Hi, we want this in order toto support keep&forward for a real mailbox, creating an alias for a mailbox that already exists. Patch against r562. ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2009-05-08 01:44 Message: Unfortunately your patch caused some problems: - it undermines the $CONF[*alias_control*] settings more or less - mailbox aliases with non-default targets are always shown in the "Aliases" section - see comment from 2009-05-04 on https://sourceforge.net/tracker/?func=detail&aid=1902476&group_id=191583&atid=937964 - it introduced some "funny" bugs - a nice example is http://sourceforge.net/tracker/?func=detail&aid=2786284&group_id=191583&atid=937964 Therefore we decided to revert most parts of this patch. (See https://sourceforge.net/mailarchive/forum.php?thread_name=E1M2Cvx-0006qQ-V2%40bj8yhf1.ch3.sourceforge.com&forum_name=postfixadmin-svn for details and what we kept, SVN r652) For your needs, please set $CONF['alias_control'] = 'YES'; $CONF['alias_control_admin'] = 'YES'; $CONF['special_alias_control'] = 'YES'; and you'll have an "Alias" link in the mailbox list to edit the alias. The only missing part is that you can't see where the mailbox aliases point to. This is already tracked in https://sourceforge.net/tracker/?func=detail&aid=1902476&group_id=191583&atid=937964 I hope you are not too disappointed that large parts of this patch were reverted. If you have good arguments why your patch should be included, feel free to speak up. If your arguments are good enough, we'll consider to include this patch again. ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2009-03-08 22:17 Message: See changeset 572. There were two typos - one missing } and an unnecessary , in some SQL. ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2009-03-08 22:12 Message: Hi, in the process of merging... ---------------------------------------------------------------------- Comment By: Fabio Bonelli (fabiobon) Date: 2009-02-05 13:48 Message: I reindented just the SQL queries I modified, to improve the readability. Additionaly, I should mention that I didn't test it with PostgreSQL. ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2009-02-05 13:18 Message: Hi, I think you've re-indented (beautification?) some of the code; although I'm happy in principal to merge it, I'd need to test it..... can someone else let meknow if the code works? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937966&aid=2567466&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-07 23:27:41
|
Bugs item #1902476, was opened at 2008-02-26 21:13 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1902476&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: None Group: None Status: Open Resolution: None Priority: 6 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: Mailbox list should show alias targets Initial Comment: Right now, we have a) the alias list which shows the targets of all aliases. Good. b) the mailbox list which does NOT show if the alias for the mailbox was modified. The mailbox list should - show a flag if the alias does _not_ point to the mailbox (forward only mode) - show all alias targets (except the mailbox) (We'll probably need a two-line format for this - the table is already wide enough.) ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2009-05-08 01:27 Message: Reverted most changes from r572 in r652, therefore the previous comment is obsolete. BTW: $CONF['show_popimap'] = 'YES' shows a flag on all mailboxes with aliases pointing to the mailbox - maybe this check should be inverted to highlight mailboxes that don't receive mail because of a changed alias. ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2009-05-04 00:47 Message: Current status: (tested as superadmin, svn r650) - default mailbox aliases (just pointing to the mailbox) are not shown (as expected) - non-default mailbox aliases (for example pointing to mailbox + external address) are shown in the "Aliases" list - independent of $CONF[alias_control/alias_control_admin/special_alias_control]. That's not what I would call "expected behaviour"... This problem was introduced in r572 (not the first one with the patch from https://sourceforge.net/tracker/index.php?func=detail&aid=2567466&group_id=191583&atid=937966 ) - seems I'll have to (re)read this patch carefully if it brings more side effects... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1902476&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-07 23:24:21
|
Bugs item #2786284, was opened at 2009-05-03 23:03 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2786284&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: None Group: None >Status: Closed >Resolution: Fixed Priority: 6 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: alias target displayed incorrect in some cases Initial Comment: I found an interesting bug in list-virtual.php which was introduced in r572. Reproducer: 1. create a mailbox "ro...@ex..." 2. create an alias "te...@ex..." pointing to "rog...@ex...,fo...@ex..." Result: The alias target is displayed as "rog...@ex..." :-( Responsible code section in list-virtual.php (line 158 in r650): /* Has a real mailbox as well? Remove the address from $row['goto'] in order to edit just the real aliases */ if (strstr ($row['goto'], ',') != FALSE) { $row['goto'] = preg_replace ('/\s*,*\s*' . $row['address'] . '\s*,*\s*/', '', $row['goto']); } Commenting out these lines solves the bug - but that's not the solution we want... (even if this might be a corner case, we should fix it before releasing 2.3) ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2009-05-08 01:24 Message: Fixed in r652 by reverting most of the changes from r572. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2786284&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-07 07:53:29
|
Patches item #2788250, was opened at 2009-05-07 09:53 Message generated for change (Tracker Item Submitted) made by soster You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937966&aid=2788250&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andrea Soster (soster) Assigned to: Nobody/Anonymous (nobody) Summary: Add transport informatio to virtual list Initial Comment: When I'm loking at the alias/mailboxes info I'd like to knwo if I'm the backup MX or not, and the transport for that domain ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937966&aid=2788250&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-03 22:47:42
|
Bugs item #1902476, was opened at 2008-02-26 21:13 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1902476&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: None Group: None Status: Open Resolution: None >Priority: 6 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: Mailbox list should show alias targets Initial Comment: Right now, we have a) the alias list which shows the targets of all aliases. Good. b) the mailbox list which does NOT show if the alias for the mailbox was modified. The mailbox list should - show a flag if the alias does _not_ point to the mailbox (forward only mode) - show all alias targets (except the mailbox) (We'll probably need a two-line format for this - the table is already wide enough.) ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2009-05-04 00:47 Message: Current status: (tested as superadmin, svn r650) - default mailbox aliases (just pointing to the mailbox) are not shown (as expected) - non-default mailbox aliases (for example pointing to mailbox + external address) are shown in the "Aliases" list - independent of $CONF[alias_control/alias_control_admin/special_alias_control]. That's not what I would call "expected behaviour"... This problem was introduced in r572 (not the first one with the patch from https://sourceforge.net/tracker/index.php?func=detail&aid=2567466&group_id=191583&atid=937966 ) - seems I'll have to (re)read this patch carefully if it brings more side effects... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1902476&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-03 21:04:10
|
Bugs item #2786284, was opened at 2009-05-03 23:03 Message generated for change (Tracker Item Submitted) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2786284&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: None Group: None Status: Open Resolution: None Priority: 6 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: alias target displayed incorrect in some cases Initial Comment: I found an interesting bug in list-virtual.php which was introduced in r572. Reproducer: 1. create a mailbox "ro...@ex..." 2. create an alias "te...@ex..." pointing to "rog...@ex...,fo...@ex..." Result: The alias target is displayed as "rog...@ex..." :-( Responsible code section in list-virtual.php (line 158 in r650): /* Has a real mailbox as well? Remove the address from $row['goto'] in order to edit just the real aliases */ if (strstr ($row['goto'], ',') != FALSE) { $row['goto'] = preg_replace ('/\s*,*\s*' . $row['address'] . '\s*,*\s*/', '', $row['goto']); } Commenting out these lines solves the bug - but that's not the solution we want... (even if this might be a corner case, we should fix it before releasing 2.3) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2786284&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-03 17:26:42
|
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: 2009-05-03 19:26 Message: (8) is done in SVN r650 - config variable: $CONF['recipient_delimiter'] Remaining parts: (1) (2) (3) (4) (5) and (7) ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2008-11-01 21:19 Message: (6) is done in SVN r471 ---------------------------------------------------------------------- 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 |
|
From: SourceForge.net <no...@so...> - 2009-05-03 13:20:43
|
Feature Requests item #2786079, was opened at 2009-05-03 15:20 Message generated for change (Tracker Item Submitted) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2786079&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: add unique index on domain_admins(username, domain) Initial Comment: The domain_admins table should have an UNIQUE index on (username, domain). In theory adding this index shouldn't break anything because our program logic (hopefully) avoids duplicates already, but in practise I'd like to do this after the 2.3 release ;-) Query for MySQL: ALTER TABLE `domain_admins` ADD UNIQUE `username_domain` ( `username` , `domain` ) @GingerDog: What's the query for PgSQL? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2786079&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-03 02:24:27
|
Feature Requests item #2765721, was opened at 2009-04-15 15:21 Message generated for change (Comment added) made by sf-robot You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2765721&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: Core Group: None >Status: Closed Resolution: Out of Date Priority: 5 Private: No Submitted By: Stephan (stephan_r) Assigned to: Nobody/Anonymous (nobody) Summary: Add 'create_mailbox_flat' Initial Comment: Some people don't like subdirs created under INBOX but would like to have them created on the same level (flat). Line 1922 in functions.inc.php creates subdirs INBOX/$dir like this: $f='{'.$s_host.'}INBOX.'.$f; There should be an option, so this is done instead: if (isset($CONF['create_mailbox_flat']) { $f='{'.$s_host.'}'.$f; ... Thanks, Stephan ---------------------------------------------------------------------- >Comment By: SourceForge Robot (sf-robot) Date: 2009-05-03 02:24 Message: This Tracker item was closed automatically by the system. It was previously set to a Pending status, and the original submitter did not respond within 14 days (the time period specified by the administrator of this Tracker). ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2009-04-18 21:54 Message: I guess you use an old(er) version of postfixadmin ;-) The feature you want is already available in the latest version (since r446, 2008-08-15) in a more flexible way (by allowing a prefix, which might be empty in your case). The config parameter for this is $CONF['create_mailbox_subdirs_prefix']. Please upgrade to the latest version of postfixadmin. If $CONF['create_mailbox_subdirs_prefix'] does not solve your problem, please report back here. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2765721&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-05-02 20:51:40
|
Feature Requests item #1719808, was opened at 2007-05-16 08:32 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=1719808&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: Vacation Group: None >Status: Closed >Resolution: Duplicate Priority: 5 Private: No Submitted By: 9evill (simpsas) Assigned to: Nobody/Anonymous (nobody) Summary: Vacation reply options Initial Comment: Hi could someone create the patch wich makes an option to select how vacation script will replay. Options should be to replay once and replay every time and it should be per user basis. Thanks ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2009-05-02 22:51 Message: This is a duplicate of https://sourceforge.net/tracker/?func=detail&aid=2721439&group_id=191583&atid=937966 ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2009-03-23 13:38 Message: The best method is to create a patch against the original files. You can do this with (the example compares two directories) diff -Nur postfixadmin-orig/ postfixadmin-edited/ > postfixadmin-vacation-settings.diff Then upload the postfixadmin-vacation-settings.diff file to this tracker (with the "Add a file" link below). (If you aren't able to create a patch for whatever reason, upload all modified files and tell me what version of postfixadmin you are using.) ---------------------------------------------------------------------- Comment By: Jan Kruis (jan-kruis) Date: 2009-03-21 19:13 Message: I have make the change to the script How do i up load the changes . ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2007-08-22 09:47 Message: Logged In: NO ooyeah some one well do that ..??? lol ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=1719808&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-04-28 12:55:12
|
Bugs item #2782818, was opened at 2009-04-28 14:55 Message generated for change (Tracker Item Submitted) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2782818&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: search doesn't filter out mailbox aliases Initial Comment: Search results contain the mailbox aliases in the "Aliases" section. They should be filtered out and only be listed in the "Mailboxes" section. Better solution - merge search and list-virtual. Wichout having looked at it, the differences are probably only: - a different WHERE clause ;-) (searching for the entered text, not for a domain) - highlighting of search matches - (maybe: hide the "create alias"/"create mailbox" links) Everything else should work with the same code. Using the code from list-virtual is probably the better idea because it is used/tested more often. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2782818&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-04-26 05:48:39
|
Bugs item #2745147, was opened at 2009-04-08 19:41 Message generated for change (Comment added) made by gingerdog You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2745147&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: Core Group: SVN (please specify revision!) >Status: Closed >Resolution: Fixed Priority: 9 Private: No Submitted By: GingerDog (gingerdog) Assigned to: Nobody/Anonymous (nobody) Summary: alias magic and domain admins Initial Comment: When editing an alias, domain admins may have permission to change the alias magic (i.e. mailbox fo...@ex... will have the alias fo...@ex...). This would allow e.g. the domain admin to stop local delivery to the user's mailbox (fo...@ex...) and deliver to just a remote address. Users can undertake such a change in the users section. Domain admins may have permission to change these too. If the domain admin doesn't have permission to edit these, AND the user has requested only remote delivery, with the 2.3rc3 version the user's mailbox will always get added back into the alias record upon editing - even if it shouldn't be there (e.g. the user deliberately removed it). (I Created this bug... ) ---------------------------------------------------------------------- >Comment By: GingerDog (gingerdog) Date: 2009-04-26 05:48 Message: I think this is now fixed in SVN. ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2009-04-26 05:48 Message: Thanks for the bug report; we believe this has been fixed in subversion. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2745147&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-04-24 21:20:21
|
Feature Requests item #2686461, was opened at 2009-03-13 20:49 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2686461&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: GingerDog (gingerdog) Assigned to: Nobody/Anonymous (nobody) Summary: Custom Fields support for mailbox table Initial Comment: See https://sourceforge.net/forum/message.php?msg_id=6779222 In brief: Add support for a number of fields to the mailbox table which will allow sysadmins to customise postfixadmin to their needs - e.g. to enable webmail or remote pop3/imap access access on a per user basis etc etc. ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2009-04-24 23:20 Message: @rlaban: Your usecase is probably already covered - see $CONF['transport'] and $CONF['transport_options'] in config.inc.php. (Nevertheless I agree that custom fields should be available.) ---------------------------------------------------------------------- Comment By: Ruben Laban (rlaban) Date: 2009-04-24 10:14 Message: In addition to custom fields for mailboxes, I'd like to see custom fields for domains as well. Example use case: Store the backend server in a field which can be used by the frontend servers to use as a transport. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2686461&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2009-04-24 08:14:53
|
Feature Requests item #2686461, was opened at 2009-03-13 20:49 Message generated for change (Comment added) made by rlaban You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2686461&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: GingerDog (gingerdog) Assigned to: Nobody/Anonymous (nobody) Summary: Custom Fields support for mailbox table Initial Comment: See https://sourceforge.net/forum/message.php?msg_id=6779222 In brief: Add support for a number of fields to the mailbox table which will allow sysadmins to customise postfixadmin to their needs - e.g. to enable webmail or remote pop3/imap access access on a per user basis etc etc. ---------------------------------------------------------------------- Comment By: Ruben Laban (rlaban) Date: 2009-04-24 10:14 Message: In addition to custom fields for mailboxes, I'd like to see custom fields for domains as well. Example use case: Store the backend server in a field which can be used by the frontend servers to use as a transport. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2686461&group_id=191583 |