[ postfixadmin-Bugs-2209340 ] "invalid parameter" when deleting an alias
Brought to you by:
christian_boltz,
gingerdog
From: SourceForge.net <no...@so...> - 2008-12-09 12:16:28
|
Bugs item #2209340, was opened at 2008-10-30 09:01 Message generated for change (Comment added) made by lathiere You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2209340&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: v 2.2 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: "invalid parameter" when deleting an alias Initial Comment: on the Admin interface, when I try to delete an alias, I've got the message "invalid parameter". ---------------------------------------------------------------------- Comment By: Benoit Lathiere (lathiere) Date: 2008-12-09 12:16 Message: The problem : When You click on "delete" in the search page, the URL is : http://server/postfixadmin/delete.php?delete=j.white&domain=toto.org but the URL must be http://server/postfixadmin/delete.php?table=alias&delete=j.white&domain=toto.org (as in mailbox deletion) The first parameter "table" is missing. You have just to modify your template/search.php file like this : Line86 : print " <td><a href=\"delete.php?table=alias&"; Line 96 : print " <td><a href=\"delete.php?table=alias&delete=" . urlencode ($tAlias[$i]['address']) . "&domain=" . $tAlias[$i]['domain'] . "\"onclick=\"return confirm ('" . $PALANG['confirm'] . $PALANG['pOverview_get_aliases'] . ": ". $tAlias[$i]['address'] . "')\">" . $PALANG['del'] . "</a></td>\n"; ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2008-11-06 08:49 Message: works for me; what version of postfixadmin are you using? ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2008-10-30 09:08 Message: By the way, my email for responses : b.l...@is... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2209340&group_id=191583 |