Results 1 to 3 of 3

Thread: Status report not showing all bounces

  1. #1
    acherwinski is offline Member
    Join Date
    Nov 2007
    Posts
    8

    Default Status report not showing all bounces

    Hello,

    My bounced messages are getting retrieved by Sugar, but not all are appearing in the Campaigns Check Status report. The Mail with the subject line "delivery failed: returning message to sender" appears to be flagged properly, but the ones with the subject line "Mail delivery failed" don't get tracked in the status report. Is there anyway of configuring this?

    Community edition 5.0

  2. #2
    kuske's Avatar
    kuske is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    Germany
    Posts
    2,597

    Default Re: Status report not showing all bounces

    In Version 5.0.0 you can change module /modules/campaigns/ProcessBouncedEmails.php

    There in function campaign_process_bounced_emails is a preg_match on the subject of the inbound mails to identify bounced mails:

    if (preg_match('/MAILER-DAEMON/i',$email_header->fromaddress)) {

    You only have to adapt this code to your bounced emails.

    I changed it for my mail environment to

    if (
    preg_match('/MAILER-DAEMON/i',$email_header->fromaddress) ||
    preg_match('/Postmaster/i',$email_header->fromaddress) ||
    preg_match('/Mail Delivery/i',$email_header->fromaddress)
    ){
    Harald Kuske
    Pre-Sales Engineer Central Europe

    SUGARCRM Deutschland GmbH
    Erika-Mann-Str. 53, 80636 Munich, Germany
    Email: hkuske@sugarcrm.com
    Home: http://www.sugarcrm.com


  3. #3
    jyim's Avatar
    jyim is offline Sugar Team Member
    Join Date
    Mar 2006
    Location
    Cupertino, CA
    Posts
    943

    Default Re: Status report not showing all bounces

    Feature Request #26008 has been created for the ability to track bounces containing "Mail delivery failed" in the subject line.

    You can review and track the bug within the Bug Portal .

    Jennifer Yim
    Senior Product Manager
    SUGARCRM Inc.
    Home: http://www.sugarcrm.com | Live Demo: http://www.sugarcrm.com/sugarcrm

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 3
    Last Post: 2009-02-15, 07:41 AM
  2. Graph in Campaign Status not showing
    By dhsg in forum Help
    Replies: 1
    Last Post: 2008-03-24, 11:38 PM
  3. Replies: 0
    Last Post: 2008-02-21, 03:50 PM
  4. Meeting list not showing added meeting status
    By anantasaurabh in forum General Discussion
    Replies: 2
    Last Post: 2005-11-25, 05:20 AM
  5. Replies: 0
    Last Post: 2005-09-24, 10:27 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •