2015-03-13 54 views
0

My Laravel Web App定期通過Mandrill發送關於系統更改的通知。Mandrill - 郵件由於[警告:郵件包含重定向URL內容]而轉移到垃圾郵件

不幸的是,山魈發送的所有郵件都轉移到我的垃圾郵件箱與消息:

[注意:郵件包含重定向URL內容]

問題1:

這條消息是關於什麼的?我想這是因爲我的服務器設置發件人地址爲「[email protected]

問題2:

是否有可能阻止嗎?也許只需要一些額外的配置。


附加信息:

  • 接收郵件服務器設在我公司。通過Symantec Messaging Gateway檢查郵件。賽門鐵克的描述是:

重定向的URL包括免費託管的網站,網址縮短服務,並 URL重定向這有可能被濫用,提供 垃圾郵件或惡意軟件負載服務。 Symantec Messaging Gateway可以針對包含一個或多個重定向URL的電子郵件過濾 。

  • 我的電子郵件程序是微軟的Outlook 2010

這裏也是郵件的HTML模板我想送:

<body bgcolor="#f7f7f7"> 
    <table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%"> 
     <tr> 
     <td align="left" valign="top" width="100%" style="background:repeat-x url(##obfuscated##) #ffffff;"> 
      <center> 
      <img src="##obfuscated##" class="force-width-gmail"> 
      <table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" background="##obfuscated##" style="background-color:transparent"> 
       <tr> 
       <td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;"> 

        <center> 
        <table cellpadding="0" cellspacing="0" width="600" class="w320"> 
         <tr> 
         <td class="pull-left mobile-header-padding-left" style="vertical-align: middle;"> 
         <a href=""><img width="167" height="35" src="##obfuscated##" alt="logo"></a> 
         </td> 

         </tr> 
        </table> 
        </center> 

       </td> 
       </tr> 
      </table> 
      </center> 
     </td> 
     </tr> 
     <tr> 
     <td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding"> 
      <center> 
      <table cellspacing="0" cellpadding="0" width="600" class="w320"> 
       <tr> 
       <td class="header-lg"> 
        Hallo {{$name}}! 
       </td> 
       </tr> 
       <tr> 
       <td class="free-text"> 
        Just a text 
       </td> 
       </tr> 

      </table> 
      </center> 
     </td> 
     </tr> 
     <tr> 
     <td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;"> 
      <center> 
      <table cellpadding="0" cellspacing="0" width="600" class="w320"> 
       <tr> 
       <td class="content-padding"> 
        <table cellpadding="0" cellspacing="0" width="100%"> 
        <tr> 
         <td class="header-md"> 
         Just a text 
         <!-- something like: 
         <tr><td style="padding: 10px 10px 10px 0px;text-align: left;">'.$offline_posting->link.'</td><td style="padding: 10px 30px 10px 0px;">'.$offline_posting->job_id.'</td><td style="padding: 10px 0px 10px 0px;color: red;">offline</td></tr> --> 
         </td> 
        </tr> 
        </table> 
       </td> 
       </tr> 
       <tr> 
       <td style="padding-bottom: 75px;"> 
        <table> 
        {{$postingslist}} 
        </table> 


       </td> 
       </tr> 
         <tr> 
       <td class="button"> 
        <div><!--[if mso]> 
        <v:rect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://188.166.43.201/" style="height:45px;v-text-anchor:middle;width:155px;" strokecolor="#ffffff" fillcolor="#73479c"> 
         <w:anchorlock/> 
         <center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">check changes</center> 
        </v:rect> 
        <![endif]--><a class="button-mobile" href="http://188.166.43.201/" 
        style="background-color:#73479c;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">check changes</a></div> 
       </td> 
       </tr> 
      </table> 
      </center> 
     </td> 
     </tr> 

     <tr> 
     <td align="center" valign="top" width="100%" style="background-color: #f7f7f7; height: 100px;"> 
      <center> 
      <table cellspacing="0" cellpadding="0" width="600" class="w320"> 
       <tr> 
       <td style="padding: 25px 0 25px"> 
        <strong>Heading</strong><br /> 
        Coding by <a href="mailto:#myemail#">Me</a><br /> 
        &copy; 2015 some company<br /><br /> 
       </td> 
       </tr> 
      </table> 
      </center> 
     </td> 
     </tr> 
    </table> 

回答

0

終於找到了自己的解決方案:

在第一手資料,它的確是按鈕「複選框的變化」,這declarated郵件釣魚郵件,但並沒有與前綴[注意事項幫助:消息包含重定向URL內容]

這是以下事實造成的,我是發送完整的HTML文檔包括

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

    <html xmlns="http://www.w3.org/1999/xhtml"> 

卸下根據線解決了這個問題。

謝謝大家!

2

這將取決於你的接收郵件服務器爲什麼會添加該郵件或注意到這一點 - 由於郵件中提供了有關重定向URL內容的內容,因此您需要查看郵件中的URL - 但這只是一種猜測 - 我們需要知道垃圾郵件FIL或者你正在使用的郵件程序,因爲它們都將有所不同。

一些垃圾郵件過濾器會標記包含跟蹤URL的電子郵件,但不是全部。當電子郵件中的文本看起來像是指向網站A時,其他人會標記內容,但HTML實際上指向了網站B的鏈接(即,旨在讓您認爲您確實要進入Pay​​Pal的東西,但這會指向您的網頁仿冒現場)。

下面是一個例子。如果您要發送這樣的事情山魈進行處理:

<a href="http://example.com">example.com</a> 

當山魈的跟蹤鏈接被應用,它會出現在電子郵件的形式大致如下,看起來網上誘騙的,因爲它看起來你針對例子。COM實則是去一個山魈/跟蹤鏈接第一:

<a href="http://mandrill.com/track....">example.com</a> 

爲了解決這個問題,確保顯示的文字是不是一個URL。所以送這樣的事情:

<a href="http://example.com">Click here to go to my site</a> 

根據顯示在您的郵件程序的消息,以上大多猜測 - 再次,它會改變,所以更多地瞭解這是/將是有益的。

+0

感謝您的幫助。我已經爲我的問題添加了一些附加信息。就個人而言,我看不到包含看起來像URL的文本的鏈接。 我的報告還包含多個網頁字符串,不再可用。我承認辦公室把鏈接放在他們身上......還是Mandrill? – 2015-03-13 23:16:18