need a little more help if possible
OK, I am guessing it's the below text. As you can see i have added in the above.
Could someone confirm it's in the right place?
/* The dns name and port for your imap server. */
global $imapServerAddress, $imapPort;
$imapServerAddress = 'localhost';
$imapPort = 143;
/**
* The domain part of local email addresses.
* This is for all messages sent out from this server.
* Reply address is generated by $username@$domain
* Example: In
[email protected], foo.com is the domain.
*/
global $domain;
$domain=$_SERVER['HTTP_HOST'];
while (sizeof(explode('.' $domain)) >2) { $domain = substr($domain, '.') + 1}
*/ $domain = 'server.catzmail.com';*/
/* Your SMTP server and port number (usually the same as the IMAP server). */
global $smtpServerAddress, $smtpPort;
$smtpServerAddress = 'localhost';
$smtpPort = 25;
/**
* Uncomment this if you want to deliver locally using sendmail
* instead of connecting to a SMTP-server.
*/
#global $useSendmail, $sendmail_path;
#$useSendmail = true;
#$sendmail_path = '/usr/sbin/sendmail';
Thanks in advance
Phil