Changes between Version 2 and Version 3 of howto/PostfixAdmin


Ignore:
Timestamp:
Jun 26, 2011, 4:51:47 PM (13 years ago)
Author:
BjarneDMat
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • howto/PostfixAdmin

    v2 v3  
    9292}}}
    9393
    94 To test if your setup can start without initial problems, execute.
     94To test if your setup can start without initial problems, execute
    9595{{{
    9696/macports/apache2/bin/httpd -S
    9797}}}
    98 
    99 Additionally
    10098
    10199=== Step 2: '''Postfix Configuration''' ===
     
    152150diff config.inc.php config.inc.edited.php | sed -En -e '/^>/p' | sed -E -e 's/^> //' > config.local.php
    153151}}}
    154 The '''bold''' lines in the following are ones you'll have to add manually.
    155 {{{
    156 '''<?php'''
     152You'll have to add some lines manually in order for {{{config.local.php}}} to work properly.
     153{{{
     154<?php                                                // add this line manually
    157155$CONF['configured'] = true;
    158156$CONF['setup_password'] = 'md5cryptpassword';
     
    168166$CONF['show_password'] = 'YES';
    169167$CONF['page_size'] = '20';
    170 '''$CONF['default_aliases'] = array ('''
     168$CONF['default_aliases'] = array (                   // add this line manually
    171169    'abuse'         => 'mailadmin@mathiesen.test',
    172170    'hostmaster'    => 'mailadmin@mathiesen.test',
    173171    'postmaster'    => 'mailadmin@mathiesen.test',
    174172    'webmaster'     => 'mailadmin@mathiesen.test'
    175 ''');'''
     173);                                                   // add this line manually
    176174$CONF['domain_path'] = 'YES';
    177175$CONF['quota'] = 'YES';
     
    183181$CONF['create_mailbox_subdirs_prefix']='';
    184182$CONF['new_quota_table'] = 'YES';
    185 }}}
    186 '''?>'''
     183?>                                                   // add this line manually
     184}}}
    187185
    188186=== Step 5: '''Postfixadmin First Run''' ===