<?php error_reporting(E_ALL); $scriptname = "butterfly.mailr"; $version = "1.1"; // If $demo_mode is set to 1 only a confirmation message will be sent to the specified address. Actual e-mails will not be sent. This mode is for installation/testing only. // Recommended: 0 (disabled). $demo_mode = 0; // Enables the debug mode to show the variable values in a table. This mode is just for debugging. // Recommended: 0 (disabled). $debug_mode = 0; // If you have enabled the debug mode you can here choose if you want the settings from this configuration file displayed on the screen. // Recommended: 0 (disabled). $conf_settings = 0; // Enables or disables writing to the log file. // Recommended: 1 (enabled). $log_file = 1; // Enables or disables the detail messages when emails are sent. // If enabled, then for each e-mail sent you will get 3 messages. // If disabled, only error messages and a report will be displayed. // Recommended: 0 (disabled). $detail_messages = 0; // Writing mode for the log file. // Options: append/overwrite. // Recommended: overwrite. $log_type = 'overwrite'; // This setting specifies the pause between e-mails when sending. This might be necessary, depending on your mailserver. // The time must be in seconds but you can specify "0.1" so there will be a pause of 1/10 of a second between the e-mails. // Recommended: 0 (disabled). $default_wait_time = 0; // Here you can choose which address list is selected by default. $default_address_list = 1; // Here you can choose the default e-mail address of the sender. Normally this is your e-mail address. $default_email_sender = "hide@address.com"; // Here you can choose the address for the confirmation e-mail. Normally this is also your e-mail address. $default_email_confirmation = "hide@address.com"; // Here you can choose the default value of the e-mail subject. $default_email_subject = "My E-mail Subject"; // Here you can specify the path to the lists directory. Normally, you don't have to change this setting. $list_dir = "lists/"; // Here you can specify the path and the name of the log file. Normally, you don't have to change this setting. $log_path = "log/emailer.txt"; // Here you can choose the default e-mail format. // Options: text/html. // Recommended: text. $default_email_format = 'text'; // Here you can specify the names of the address files. Normally, you shouldn't mess with these settings. $file[0] = "address01.txt"; $file[1] = "address02.txt"; $file[2] = "address03.txt"; $file[3] = "address04.txt"; $file[4] = "address05.txt"; $file[5] = "address06.txt"; $file[6] = "address07.txt"; $file[7] = "address08.txt"; $file[8] = "address09.txt"; $file[9] = "address10.txt"; // Here you can specify a signature to be attached to the end of each e-mail. // Options: blank line = " ". $signature[0] = "========================================="; $signature[1] = "Name Surname"; $signature[2] = "Job Title"; $signature[3] = "Company Name"; $signature[4] = "Address"; $signature[5] = "City"; $signature[6] = "State"; $signature[7] = " "; $signature[8] = "Phone Number: 000.000.000"; $signature[9] = "E-mail address: hide@address.com"; // Here you can specify the PHP timeout limit. If the value is set to 0 then there is no limit set with "set_time_limit()". // Normally, you shouldn't mess with this setting, unless you know what you're doing, or according to your mail server configuration. set_time_limit(0); ?>