Re: [Postfixadmin-devel] Changing some defaults in trunk/3.0?
Brought to you by:
christian_boltz,
gingerdog
From: David G. <da...@co...> - 2012-04-13 14:44:00
|
> $CONF['database_type'] = 'mysqli'; # current value: "mysql" > should be changed to "mysqli". The reason is simple - I don't expect we > have too many users using MySQL < 4.1 nowadays ;-) so using the (newer) > mysqli interface by default would make sense. > Just silently default to mysqli perhaps - i.e. if someone chooses 'mysql' they're actually using 'mysqli' ? We could wrap this in a if(function_exists('mysqli_connect')) or something - just incase it's possible to have a php5-mysql installed without a php5-mysqli package? So really the user is choosing whether to use MySQL or other.database - not between two flavours of MySQL. > $CONF['domain_path'] = 'YES'; # was NO > $CONF['domain_in_mailbox'] = 'NO'; # was YES > in other words: domain/username/ instead of username@domain/ > reason: maybe personal taste ;-) > Yes. > $CONF['quota'] = 'YES'; # was NO > reason: I'm using quota everywhere - even if I make the mailbox *very* > big, just to avoid that a forgotten mailbox can fill up the hard disk. I'd always change this back to 'No'. But that's just me. > $CONF['vacation'] = 'YES'; # was NO > why should we hide this feature? ;-) > I think we should look at using sieve. > > $CONF['backup'] = 'NO'; # was YES > The backup module is basically unmaintained… > +1 - doesn't work for PostgreSQL anyway. > $CONF['show_status']='YES'; # was NO What's this do? Just show whether the database thinks a mailbox/alias is in use? If so, yes. David. |