[ postfixadmin-Bugs-3047721 ] usercreation
Brought to you by:
christian_boltz,
gingerdog
|
From: SourceForge.net <no...@so...> - 2010-09-14 08:43:10
|
Bugs item #3047721, was opened at 2010-08-18 14:39 Message generated for change (Comment added) made by echternacht You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3047721&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: v2.3.1 >Status: Closed >Resolution: Accepted Priority: 5 Private: No Submitted By: echternacht (echternacht) Assigned to: Nobody/Anonymous (nobody) Summary: usercreation Initial Comment: On a setup with virtual domains, I got an error with creating a new user. This only happens on domainnames with a "-" in the name f.e.: google-analytics.com The entries in the alias-table of the database are good. But in the mailbox-table the maildir looks like this: hom...@go... Than postfix create the maildirectory in this way: /maildirpath/hom...@go... With my setup, that works on version 2.2.1.1 very well, postfix creates the path rigth: /maildirpath/google-analytics.com/homer.simpson ---------------------------------------------------------------------- >Comment By: echternacht (echternacht) Date: 2010-09-14 10:43 Message: Thank you for the explanation, that solve my problems with the setup. ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-09-12 01:38 Message: I guess that this has nothing to do with a - in the domain name ;-) from create-mailbox.php: else if ($CONF['domain_path'] == "YES") from your config: $CONF['domain_path'] = 'Yes'; This is checked case sensitive. Please use 'YES' instead of 'Yes'. Does it work now? (It should.) I know that case sensitive config options are far from perfect, but you'll have to live with it for now. There are lots of config options that use case-sensitive YES/NO values, and fixing them all will take some time. ---------------------------------------------------------------------- Comment By: echternacht (echternacht) Date: 2010-08-24 10:36 Message: I changed these settings in the config.inc.php: $CONF['database_type'] = 'mysqli'; $CONF['generate_password'] = 'YES'; $CONF['show_password'] = 'YES'; $CONF['domain_path'] = 'Yes'; $CONF['domain_in_mailbox'] = 'NO'; $CONF['transport_default'] = 'maildrop'; $CONF['alias_control'] = 'YES'; $CONF['alias_control_admin'] = 'YES'; $CONF['special_alias_control'] = 'YES'; $CONF['alias_domain'] = 'NO'; $CONF['backup'] = 'NO'; $CONF['sendmail'] = 'NO'; $CONF['fetchmail'] = 'NO'; $CONF['show_status']='YES'; $CONF['show_status_key']='YES'; I don not use a config.local.php file. ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-08-22 23:14 Message: I just tested this, but can't reproduce it. The mailbox table contains the correct maildir. Which settings in config.inc.php did you change? Please attach all modified values (without database details and setup password of course). If you are using config.local.php and did not edit config.inc.php, just attach config.local.php. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3047721&group_id=191583 |