Welcome to Geeklog, Anonymous Saturday, December 21 2024 @ 06:50 am EST
Geeklog Forums
email issues...
CubsHub
Anonymous
I have tried every option.. but I can not get the mailing system to work..
on the blog, or the forum..
www.cubshub.com
please help me!!!!!!!!!!!!!!!!!!!!!!
on the blog, or the forum..
www.cubshub.com
please help me!!!!!!!!!!!!!!!!!!!!!!
12
13
Quote
CubsHub
Anonymous
No notifiers have ever worked..
When I sign up as a new user... I do not get any email from the site...
There are 3 mailing options.. I tried them all..
config.php:
// SMTP parameters (only needed for 'backend' => 'smtp')
'host' => 'smtp.cubshub.com',
'port' => '25',
'auth' => true,
'username' => 'blog@cubshub.com',
'password' => '******'
When I sign up as a new user... I do not get any email from the site...
There are 3 mailing options.. I tried them all..
config.php:
Text Formatted Code
// SMTP parameters (only needed for 'backend' => 'smtp')
'host' => 'smtp.cubshub.com',
'port' => '25',
'auth' => true,
'username' => 'blog@cubshub.com',
'password' => '******'
15
16
Quote
Status: offline
1000ideen
Forum User
Full Member
Registered: 08/04/03
Posts: 1298
SMTP is also my choice and usually dead sure. So are you sure that the settings are correct?
Sometimes (in my case) it is only e.g.:
'host' => 'example.com',
'username' => 'web333p1',
Maybe you ask your hoster again?
Sometimes (in my case) it is only e.g.:
'host' => 'example.com',
'username' => 'web333p1',
Maybe you ask your hoster again?
14
31
Quote
CubsHub
Anonymous
I tried every combo..
and asked the hoster... tried what he said to try.. and it did not work..
and asked the hoster... tried what he said to try.. and it did not work..
12
13
Quote
Status: offline
romantaran
Forum User
Junior
Registered: 03/19/05
Posts: 34
Location:Russia
I had such problem. The bug was in the function COM_formatEmailAddress. Try to do this:
open lib-common.php (back it up)
find
function COM_formatEmailAddress( $name, $address )
{
$formatted_name = $name;
$formatted_name = str_replace( ':', '', $formatted_name );
$formatted_name = str_replace( '"', '\\"', $formatted_name );
if(( $name != $formatted_name ) ||
( strpos( $formatted_name, '.' ) !== false ))
{
$formatted_name = '"' . $formatted_name . '"';
}
return $formatted_name . ' <' . $address . '>';
return $address;
}
replace with:
function COM_formatEmailAddress( $name, $address )
{
/*$formatted_name = $name;
$formatted_name = str_replace( ':', '', $formatted_name );
$formatted_name = str_replace( '"', '\\"', $formatted_name );
if(( $name != $formatted_name ) ||
( strpos( $formatted_name, '.' ) !== false ))
{
$formatted_name = '"' . $formatted_name . '"';
}
return $formatted_name . ' <' . $address . '>';*/
return $address;
}
After this fix you'll receive letters, but without author's name.
Then, to know, who is wrote to you:
open profiles.php (back it up)
find:
next line replace with:
open admin/mail.php (back it up)
find:
next line replace with:
open lib-common.php (back it up)
find
Text Formatted Code
function COM_formatEmailAddress( $name, $address )
{
$formatted_name = $name;
$formatted_name = str_replace( ':', '', $formatted_name );
$formatted_name = str_replace( '"', '\\"', $formatted_name );
if(( $name != $formatted_name ) ||
( strpos( $formatted_name, '.' ) !== false ))
{
$formatted_name = '"' . $formatted_name . '"';
}
return $formatted_name . ' <' . $address . '>';
return $address;
}
replace with:
Text Formatted Code
function COM_formatEmailAddress( $name, $address )
{
/*$formatted_name = $name;
$formatted_name = str_replace( ':', '', $formatted_name );
$formatted_name = str_replace( '"', '\\"', $formatted_name );
if(( $name != $formatted_name ) ||
( strpos( $formatted_name, '.' ) !== false ))
{
$formatted_name = '"' . $formatted_name . '"';
}
return $formatted_name . ' <' . $address . '>';*/
return $address;
}
After this fix you'll receive letters, but without author's name.
Then, to know, who is wrote to you:
open profiles.php (back it up)
find:
Text Formatted Code
$from = COM_formatEmailAddress ($author, $authoremail);next line replace with:
Text Formatted Code
$message = $author . ' writes: ' . $message;open admin/mail.php (back it up)
find:
Text Formatted Code
$message = COM_stripslashes ($vars['message']);next line replace with:
Text Formatted Code
$message = $vars['fra'] . ', admin writes: ' . $message;
11
12
Quote
cubshub
Anonymous
ok i replaced the first one...
and i still do not get the email
ARGH!!!!!!!!!!!!!!!!!!!!!!1
and i still do not get the email
ARGH!!!!!!!!!!!!!!!!!!!!!!1
12
17
Quote
Status: offline
Dirk
Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
Spam filters? Try sending to an email address that doesn't have spam filters or lets you see the filtered emails.
If you really tried "every" option (including the fourth one listed in the FAQ?) and your hosting service can't see anything wrong either, then the problem must be on the receiving end.
bye, Dirk
If you really tried "every" option (including the fourth one listed in the FAQ?) and your hosting service can't see anything wrong either, then the problem must be on the receiving end.
bye, Dirk
12
15
Quote
Status: offline
1000ideen
Forum User
Full Member
Registered: 08/04/03
Posts: 1298
It is not the receiving end as I subscribed to your site and also did not receive an email.
Indeed the fourth option may work or there must be something wrong either with the settings or the files are corrupted.
Indeed the fourth option may work or there must be something wrong either with the settings or the files are corrupted.
12
11
Quote
cubshub
Anonymous
still doesnt work...
Next idea?
Next idea?
14
12
Quote
Status: offline
DTrumbower
Forum User
Moderator
Registered: 01/08/03
Posts: 507
Quote by 1000ideen: It is not the receiving end as I subscribed to your site and also did not receive an email.
Indeed the fourth option may work or there must be something wrong either with the settings or the files are corrupted.
Indeed the fourth option may work or there must be something wrong either with the settings or the files are corrupted.
That would mean it is the recieving end.
Most emails generated from Geeklog do get filtered by spam filters.
14
11
Quote
CubsHub
Anonymous
None of my 36 users can receive emails, and it is the members side?
I highly doubt it.
we use hotmail, yahoo, gmail, and I use outlook with my "@cubshub.com" account and it still doesnt work....
Is there anyone here willing to help me out if i give access to look at the config file?
I am not the smartest when it comes to things like this..... any help would be great...
I highly doubt it.
we use hotmail, yahoo, gmail, and I use outlook with my "@cubshub.com" account and it still doesnt work....
Is there anyone here willing to help me out if i give access to look at the config file?
I am not the smartest when it comes to things like this..... any help would be great...
10
14
Quote
All times are EST. The time is now 06:50 am.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content