32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
|
<?php
|
||
|
// Minimalist Admin global config file.
|
||
|
//
|
||
|
// Specify the location of your lists.lst file.
|
||
|
// From this file the available Minimalists will be printed.
|
||
|
$CONF['minimalist_lists'] = "lists.lst";
|
||
|
//
|
||
|
// Specify the email address of your minimalist.
|
||
|
$CONF['minimalist_email'] = "minimalist@high5.net";
|
||
|
//
|
||
|
// Specify the title for the main page heading.
|
||
|
$CONF['minimalist_title'] = "Minimalist Mailinglist Manager";
|
||
|
//
|
||
|
// Specify the title for the subscribe / unsuibscribe page heading.
|
||
|
$CONF['minimalist_list_title'] = "Subscribe / Unsubscribe to ";
|
||
|
//
|
||
|
// The parameters below can also be used in a local config file.
|
||
|
//
|
||
|
$CONF['list_name'] = "";
|
||
|
//
|
||
|
// If you want to allow the use of list-writers set this to enable.
|
||
|
$CONF['list_writers'] = "enable";
|
||
|
//
|
||
|
// Specify the subscribe / unsubscribe text.
|
||
|
$CONF['list_subscribe'] = "Thank you for subscribing! An email has been sent to you for subscription approval.";
|
||
|
$CONF['list_unsubscribe'] = "We hate to loose you, come again soon! An email has been sent to you for unsubscription approval.";
|
||
|
//
|
||
|
// Specify the error messages.
|
||
|
$CONF['error_email_nomatch'] = "<span class=\"error\">ERROR: The two email addresses don't match!</span>\n";
|
||
|
$CONF['error_email_notvalid'] = "<span class=\"error\">ERROR: You have not entered a correct email address!</span>\n";
|
||
|
?>
|