0

我希望有人能告诉我我是否配置错误或者这是 Heroku 错误。

当我给大学里的某个人发电子邮件时,不知何故,这封电子邮件在电子邮件地址中带有一个不存在的 herokuapp 扩展名。然后,当人们尝试回复时,它会退回,因为该电子邮件不存在。下面是一个例子。

我希望我的 CName 配置错误或其他什么。我没有使用 A 记录,所有 CName 记录。我的第一个 CNAME 记录是一个 @ 记录,其值为challengage.herokuapp.com。

让我知道您是否可以提供帮助!非常感激。

---------- Forwarded message ----------

    From: David DiMaggio 
Date: Monday, July 15, 2013
Subject: FW: Challengage - Work Team Simulation product for interviewing evaluations
To: "Paul Klopfer (paul@challengage.com)" <paul@challengage.com>


Paul,
 This is the message below that I receive when I reply to your emails that come from this address: paul@challengage.herokuapp.com



David C. DiMaggio
Program Manager
CASE Co-op Program
Syracuse University
Center for Science & Technology
Room 1-232
Syracuse, NY 13244-4100
315-443-5018; Fax 315-443-4745
Cell: 315-436-1124
http://case.syr.edu/coops/index.php



-----Original Message-----
From: Mail Delivery Subsystem [mailto:MAILER-DAEMON@smtp2.syr.edu]
Sent: Monday, July 15, 2013 2:08 PM
To: David DiMaggio
Subject: Undeliverable: FW: Challengage - Work Team Simulation product for interviewing evaluations

Delivery has failed to these recipients or groups:

paul@challengage.herokuapp.com
The server has tried to deliver this message, without success, and has stopped trying. Please try sending this message again. If the problem continues, contact your helpdesk.


The following organization rejected your message: challengage.herokuapp.com.









Diagnostic information for administrators:

Generating server: smtp2.syr.edu

paul@challengage.herokuapp.com
challengage.herokuapp.com #<challengage.herokuapp.com #4.4.7> #SMTP#

Original message headers:

Return-Path: <ddimaggi@syr.edu>
Received: from suex10-hub-01.ad.syr.edu ([128.230.108.124])
        by smtp2.syr.edu (8.14.5/8.14.5) with ESMTP id r68GaQdR008193
        (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL);
        Mon, 8 Jul 2013 12:36:26 -0400
Received: from SUEX10-MBX-09.ad.syr.edu ([128.230.108.192]) by
 suex10-hub-01.ad.syr.edu ([128.230.108.124]) with mapi id 14.03.0123.003;
 Mon, 8 Jul 2013 12:36:26 -0400
From: David DiMaggio <ddimaggi@syr.edu>
To: "'Paul Klopfer'" <paul@challengage.herokuapp.com>
CC: "'Hendrickson, Cindy (GE Corporate)'" <lucinda.hendrickson@ge.com>
Subject: RE: FW: Challengage - Work Team Simulation product for interviewing
 evaluations
Thread-Topic: FW: Challengage - Work Team Simulation product for
 interviewing evaluations
Thread-Index: AQHOcuA7MvWUIninI0ObOEkuTugrYJlSpdKAgAhmsmA=
Date: Mon, 8 Jul 2013 16:36:25 +0000
Message-ID: <832C225B54BD58489EF60E1B2B7D1165264525@SUEX10-mbx-09.ad.syr.edu>
References: <832C225B54BD58489EF60E1B2B7D11652618DF@SUEX10-mbx-09.ad.syr.edu>
        <832C225B54BD58489EF60E1B2B7D1165261BF0@SUEX10-mbx-09.ad.syr.edu>
        <CAHGmi1POvrk1F954ViRL5xEHKDqN1sqFvqk6XWMH=U12VjO3PA@mail.gmail.com>
 <CAHGmi1Ofb13g7MenaT4Q69VJ=wU8fJcMdDpWih9P4tMC_4nsJA@mail.gmail.com>
In-Reply-To: <CAHGmi1Ofb13g7MenaT4Q69VJ=wU8fJcMdDpWih9P4tMC_4nsJA@mail.gmail.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
x-originating-ip: [128.230.32.54]
Content-Type: text/plain
MIME-Version: 1.0
X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.10.8794,1.0.431,0.0.0000
 definitions=2013-07-08_02:2013-07-08,2013-07-08,1970-01-01 signatures=0
X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=0 phishscore=0
 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1
 engine=7.0.1-1305240000 definitions=main-1307080139
4

1 回答 1

0

您在 Heroku 应用程序发出的交易电子邮件中配置了错误的发件人地址。

您有一个有效的电子邮件配置和一个无法接收电子邮件chalengage.com的 heroku 应用程序。challengage.herokuapps.com

您需要将外发电子邮件地址更改为paul@challengage.com

在 Rails 中,您可以通过添加/更改配置来配置来自您的ApplicationMailer 类(子类)地址的外发电子邮件:ActionMailer::Basedefault from

default from: "Paul Klopfer <paul@challengage.com>"
于 2013-08-16T16:33:19.743 回答