RoundCube Webmail Forum  

Go Back   RoundCube Webmail Forum > Release Support > Pending Issues

For more information about the ads and why they're here, please see the FAQ
Reply
  #1  
Old 08-30-2006, 08:30 AM
Registered User
 
Join Date: Jul 2006
Posts: 36
Downloads: 0
Uploads: 0
Default Hotmail always gets placed into the junk folder

Why is it that all emails that only originate only my emails from the roundcube webmail jets palced into the junk filters on hotmail. I think it is because all emails start with some funny little charcter that is only seen in hotmail emails. It looks like this:


test test test

Notice the chars above the "test test test".

Anyone else notice this problem? I think it is idue to the font type that is used.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 08-30-2006, 01:28 PM
Registered User
 
Join Date: Aug 2006
Posts: 7
Downloads: 0
Uploads: 0
Send a message via MSN to mtrojahn
Default Re: Hotmail always gets placed into the junk folder

Yes, I just tested it and it went to the Junk too...

But we gotta keep in mind that Hotmail filter is a learning filter... So it will have false positives once in a while... But I agree, it's probable something on the source of the message that is triggering the filter... I don't see the strange characters you got on your message though...
__________________
Marcelus Trojahn
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 08-30-2006, 04:34 PM
Registered User
 
Join Date: Jun 2006
Posts: 19
Downloads: 0
Uploads: 0
Default Re: Hotmail always gets placed into the junk folder

Same problem here. Has anyone logged a bug report for this?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 09-05-2006, 03:19 AM
Registered User
 
Join Date: Jul 2006
Posts: 35
Downloads: 0
Uploads: 0
Default Re: Hotmail always gets placed into the junk folder

I have no problem sending to hotmail, in fact I send email to my wife on hotmail all the time. I am using the beta2 version.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 09-07-2006, 08:16 AM
Registered User
 
Join Date: Jul 2006
Posts: 36
Downloads: 0
Uploads: 0
Default Re: Hotmail always gets placed into the junk folder

Hmm I still get that funny characters when ever I send an email to hotmail I think it is the UTF-8 charset that is used.

Also in the sendmail.inc there is:

if (!empty($_POST['_receipt']))
{
$headers['Return-Receipt-To'] = $identity_arr['string'];
$headers['Disposition-Notification-To'] = $identity_arr['string'];
}

I added additional snippets for just the hotmail users..

// added for hotmail emails
if (empty($_POST['_receipt']))
{
$headers['Return-Receipt-To'] = $identity_arr['string'];
$headers['Disposition-Notification-To'] = $identity_arr['string'];
}



For some reason hotmail will only receive my emails whn it has the return Receipt checked. I don.t even rember how I stumbled onto this. Nonetheless Return Receipt seems to be the only way for me to currently send email to hotmail. I checked all of my logs ont he webmail as well as on our IMAP/SMTP server. Everything is pushed out jsut fine but IT hink soemthing is making this invalid. It could be the weird charset that is received on the emails it looks like this:

From : <removed@removed.com>
Sent : Thursday, September 7, 2006 6:01 AM
To : removed <removed-emailaddress@hotmail.com>
Subject : test




test 2 with rr
----------------------------------------------



NOTICE the 


I do not understand what this is I thought it was in the compose.inc file but I.m not sure where thouse few funny chars come from.
Can any one help on this?

-Sincerely,
DesertAdmin


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 09-07-2006, 03:15 PM
Registered User
 
Join Date: Sep 2006
Posts: 2
Downloads: 0
Uploads: 0
Default Re: Hotmail always gets placed into the junk folder

I had the same problem (email sent from my roundcube webmail to hotmail went in the thrash). I changed the line

$rcmail_config['useragent'] = 'RoundCube Webmail';

in config/main.inc.php to

$rcmail_config['useragent'] = 'SquirrelMail/1.5.1';

...and the problem was gone. If You can live with the fact that the header lies to you, and says that the email is being sent from squirrelmail instead, then this ugly little trick might cover up the problem, at least for the time being.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 09-08-2006, 09:04 AM
Registered User
 
Join Date: Sep 2006
Posts: 6
Downloads: 0
Uploads: 0
Default Re: Hotmail always gets placed into the junk folder

I have the same problem.
I changed the agent name and every mail go to trash in hotmail.

No solution. What could be ?

(Yahoo and gmail work good)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 09-08-2006, 04:07 PM
Registered User
 
Join Date: Sep 2006
Posts: 2
Downloads: 0
Uploads: 0
Default Re: Hotmail always gets placed into the junk folder

Quote:
Originally Posted by Guillermolococo
I have the same problem.
I changed the agent name and every mail go to trash in hotmail.

No solution. What could be ?

(Yahoo and gmail work good)
Did You change the useragent as per my post above? That helped for me anyway. The header contains no other information that seems to be the problem, at least not in the version that i use (latest stable release).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 09-21-2006, 08:10 AM
Registered User
 
Join Date: Sep 2006
Posts: 3
Downloads: 0
Uploads: 0
Default Re: Hotmail always gets placed into the junk folder

That's very strange how the hotmail filter works.

$rcmail_config['useragent'] = 'SquirrelMail/1.5.1';
is useless for me, instead I change
Code:
if (!empty($CONFIG['useragent']))
  $headers['User-Agent'] = $CONFIG['useragent'];
to
Code:
if (!empty($CONFIG['useragent']))
  $headers['X-Mailer'] = $CONFIG['useragent'];
in file program/steps/mail/sendmail.inc .

some mails can be delivered to hotmail's inbox , but some still to the junk folder.

I think that's hotmail filter's problem.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 03-27-2007, 07:05 PM
Registered User
 
Join Date: Oct 2006
Posts: 46
Downloads: 0
Uploads: 0
Default Re: Hotmail always gets placed into the junk folder

I have tried this and hot does not recieve my mail.

I have spf, PTR and rdns all showing good and hotmail states they are not blocking my server. Any othe suggestions
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

For more information about the ads and why they're here, please see the FAQ

All times are GMT. The time now is 09:45 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright © 2006-2008 RoundCube Webmail Community