Hi,
These are set in the database in the configuration table.
There's an sql script that you'll find under the database directory in the kit that shows you all the inserts. You will have to set the values that work for you of course!
Here's an extract of the email-related configuration values:
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('SMTP Server', 'SMTP_SERVER', 'ENTER_YOUR_SMTP_SERVER_HERE', 'The SMTP server', '21', '1', now());
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, set_function) VALUES ('SMTP Secure', 'SMTP_SECURE', 'false', 'Whether or no the SMTP server needs user authentication', '21', '2', now(), 'tep_cfg_select_option(array(\'true\', \'false\'), ');
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('SMTP User', 'SMTP_USER', '
user@yourdomain.com', 'The SMTP user', '21', '2', now());
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('SMTP Password', 'SMTP_PASSWORD', '', 'The SMTP password', '21', '4', now());
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Email Reply To', 'EMAIL_REPLY_TO', '
user@yourdomain.com', 'The Reply To Address', '21', '5', now());
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, set_function) VALUES ('Debug Email Sessions', 'DEBUG_EMAIL_SESSIONS','true', 'Debug email sessions', '21', '6', now(), 'tep_cfg_select_option(array(\'true\', \'false\'), ');
Good luck,
john