SF.net SVN: postfixadmin: [139] trunk/create-mailbox.php
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2007-10-07 19:52:36
|
Revision: 139 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=139&view=rev Author: christian_boltz Date: 2007-10-07 12:52:40 -0700 (Sun, 07 Oct 2007) Log Message: ----------- - always convert maildir name to lovercase - fixes https://sourceforge.net/tracker/index.php?func=detail&aid=1783149&group_id=191583&atid=937964 Modified Paths: -------------- trunk/create-mailbox.php Modified: trunk/create-mailbox.php =================================================================== --- trunk/create-mailbox.php 2007-10-07 19:16:48 UTC (rev 138) +++ trunk/create-mailbox.php 2007-10-07 19:52:40 UTC (rev 139) @@ -168,7 +168,7 @@ } else { - $maildir = $fDomain . "/" . escape_string ($_POST['fUsername']) . "/"; + $maildir = $fDomain . "/" . escape_string (strtolower($_POST['fUsername'])) . "/"; } } else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |