// In order to setup Postfixadmin, you MUST specify a hashed password here.
// To create the hash, visit setup.php in a browser and type a password into the field,
// on submission it will be echoed out to you as a hashed value.
-$CONF['setup_password'] = 'changeme';
+$CONF['setup_password'] = '<%= postfixadmin_setup_hash %>';
// Postfix Admin Path
// Set the location of your Postfix Admin installation here.
// Site Admin
// Define the Site Admins email address below.
// This will be used to send emails from to create mailboxes.
-$CONF['admin_email'] = 'postmaster@change-this-to-your.domain.tld';
+$CONF['admin_email'] = 'postmaster@<%= domain %>';
// Mail Server
// Hostname (FQDN) of your mail server.
// Default Aliases
// The default aliases that need to be created for all domains.
$CONF['default_aliases'] = array (
- 'abuse' => 'abuse@change-this-to-your.domain.tld',
- 'hostmaster' => 'hostmaster@change-this-to-your.domain.tld',
- 'postmaster' => 'postmaster@change-this-to-your.domain.tld',
- 'webmaster' => 'webmaster@change-this-to-your.domain.tld'
+ 'abuse' => 'abuse@<%= domain %>',
+ 'hostmaster' => 'hostmaster@<%= domain %>',
+ 'postmaster' => 'postmaster@<%= domain %>',
+ 'webmaster' => 'webmaster@<%= domain %>'
);
// Mailboxes
// This is the autoreply domain that you will need to set in your Postfix
// transport maps to handle virtual vacations. It does not need to be a
// real domain (i.e. you don't need to setup DNS for it).
-$CONF['vacation_domain'] = 'autoreply.change-this-to-your.domain.tld';
+$CONF['vacation_domain'] = 'autoreply.<%= domain %>';
// Vacation Control
// If you want users to take control of vacation set this to 'YES'.
$CONF['header_text'] = ':: Postfix Admin ::';
// link to display under 'Main' menu when logged in as a user.
-$CONF['user_footer_link'] = "http://change-this-to-your.domain.tld/main";
+$CONF['user_footer_link'] = "http://<%= domain %>/main";
// Footer
// Below information will be on all pages.