Page 1 of 1

The root of my emailer.php problem

PostPosted: Fri Feb 16, 2007 11:26 am
Author: rpadilla
My provider allows emails out of mail.php not emailer.php. If I rename the file, whic files I need to edit to reflect the change?

Thanks!

Re: The root of my emailer.php problem

PostPosted: Fri Feb 16, 2007 8:01 pm
Author: Helter

Re: The root of my emailer.php problem

PostPosted: Sun Feb 18, 2007 9:35 am
Author: rpadilla
Thanks, I checked all that but I would like to fix it rather than disable it. I don't have a lot of knowledge about php coding but at least I can use the xtreme styles template edit, that's why I was hoping to find a list of all the files that reference to "emailer.php" to change it to "mail.php" and see if it fixes my problem.

Re: The root of my emailer.php problem

PostPosted: Sun Feb 18, 2007 12:47 pm
Author: Teelk
Here is a list of files that contains the word emailer.

When you search for the code that includes emailer.php it won't be written as such. It'll be written similar to this...
Code: Select all
include($phpbb_root_path . 'includes/emailer.'.$phpEx);


File list...
Code: Select all
album_upload.phpcard.phpdelete_users.phpgroupcp.phplink_register.phpmail_digests.phpposting.phpprivmsg.phpprofile.phptellafriend.phpviewtopic.phpadmin/admin_approve.phpadmin/admin_email_users.phpadmin/admin_forum_rules.phpadmin/admin_mass_email.phpadmin/admin_userlist.phpadmin/admin_users_inactive.phpincludes/emailer.phpincludes/functions_cash.phpincludes/functions_digests.phpincludes/functions_kb.phpincludes/functions_post.phpincludes/phpbb_security.phpincludes/usercp_profile.phpmods/contact/class_contact.phppafiledb/modules/pa_email.phpprofilcp/profilcp_activate.phpprofilcp/profilcp_email.phpprofilcp/profilcp_privmsg.phpprofilcp/profilcp_sendpassword.php


You'll also need to know where emailer.php is included with any MOD that you may want to add later, so that you can change it as well.