Estou usando o windows server 2008 r2 e o IIS 7.5 normalmente. Eu estou usando o IIS 6 smpt server para enviar e-mails. Agora, quando eu enviar e-mail através do meu aplicativo c # eu estou vendo 2 recebidos de cabeçalhos. Qual pode ser a causa disso?
Exibindo os cabeçalhos do Gmail e do Hotmail
gmail:
Delivered-To: [email protected]
Received: by 10.112.29.167 with SMTP id l7csp43703lbh;
Sat, 10 Mar 2012 08:16:29 -0800 (PST)
Received: by 10.14.127.12 with SMTP id c12mr1026618eei.19.1331396188791;
Sat, 10 Mar 2012 08:16:28 -0800 (PST)
Return-Path: <[email protected]>
Received: from noreply.monstermmorpg.com (noreply.monstermmorpg.com. [85.17.154.139])
by mx.google.com with ESMTP id f41si4528441eeo.146.2012.03.10.08.16.27;
Sat, 10 Mar 2012 08:16:28 -0800 (PST)
Received-SPF: pass (google.com: domain of [email protected] designates 85.17.154.139 as permitted sender) client-ip=85.17.154.139;
Authentication-Results: mx.google.com; spf=pass (google.com: domain of [email protected] designates 85.17.154.139 as permitted sender) [email protected]
Received: from XCPV002 ([127.0.0.1]) by noreply.monstermmorpg.com with Microsoft SMTPSVC(7.5.7601.17514);
Sat, 10 Mar 2012 16:16:28 +0000
MIME-Version: 1.0
From: "MonsterMMORPG"
<[email protected]>
To: [email protected]
Date: 10 Mar 2012 16:16:28 +0000
Subject: =?utf-8?B?UG9rZW1vbkNyYWZ0IGRhaGEga2FsaXRlbGkgYmlyIG95dW4g?=
=?utf-8?B?b2xhcmFrIGdlcmkgZMO2bmTDvC4gRXNraSBoZXNhYsSxbsSxeiBkdXJ1?=
=?utf-8?B?eW9yLg==?=
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: base64
Return-Path: [email protected]
Message-ID: <[email protected]>
X-OriginalArrivalTime: 10 Mar 2012 16:16:28.0941 (UTC) FILETIME=[26372BD0:01CCFED9]
cabeçalhos do hotmail
x-store-info:sbevkl2QZR7OXo7WID5ZcaZ0jeT0hTF6w5JqyzrMGIIJ4/L/t2gj2cA4gOeWpl7k+VkJUhAu0L19pcdx17/6zH+umIRUQcxNC7a6JMdOu4uk+atrpASsFAd6JPSp2WMA
Authentication-Results: hotmail.com; sender-id=temperror (sender IP is 85.17.154.139) [email protected]; dkim=none header.d=monstermmorpg.com; x-hmca=none
X-Message-Status: n:0:n
X-SID-PRA: MonsterMMORPG <[email protected]>
X-DKIM-Result: None
X-AUTH-Result: NONE
X-Message-Delivery: Vj0xLjE7dXM9MDtsPTA7YT0xO0Q9MTtHRD0xO1NDTD0w
X-Message-Info: NhFq/7gR1vQcnWpWXvTdSPoVLSrfQUf9NNYiD+nue1hb767bbTKXz+tuMD66iU4vKsnCmrISnMcViv7BRc8FinIdJij0qRdzfb9MQFyl8Qnq2jH2yHHz6W3BUjjFUEclGZIdpMuV4EQ=
Received: from noreply.monstermmorpg.com ([85.17.154.139]) by BAY0-MC3-F1.Bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4900);
Sat, 10 Mar 2012 08:20:03 -0800
Received: from XCPV002 ([127.0.0.1]) by noreply.monstermmorpg.com with Microsoft SMTPSVC(7.5.7601.17514);
Sat, 10 Mar 2012 16:20:03 +0000
MIME-Version: 1.0
From: "MonsterMMORPG"
<[email protected]>
To: [email protected]
Date: 10 Mar 2012 16:20:03 +0000
Subject: =?utf-8?B?UG9rZW1vbkNyYWZ0IGRhaGEga2FsaXRlbGkgYmlyIG95dW4g?=
=?utf-8?B?b2xhcmFrIGdlcmkgZMO2bmTDvC4gRXNraSBoZXNhYsSxbsSxeiBkdXJ1?=
=?utf-8?B?eW9yLg==?=
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: base64
Return-Path: [email protected]
Message-ID: <[email protected]>
X-OriginalArrivalTime: 10 Mar 2012 16:20:03.0608 (UTC) FILETIME=[A62AC180:01CCFED9]
Se você verificar, verá que há 2 recebidos dos cabeçalhos. Deixe-me também mostrar como eu envio e-mail e minha configuração do servidor smtp
É assim que eu envio e-mail C #
MailMessage mail = new MailMessage();
mail.To.Add(srEmail);
mail.From = new MailAddress("[email protected]", srSender);
mail.Subject = srEmailTitle;
mail.Body = srEmailBody;
mail.IsBodyHtml = true;
mail.SubjectEncoding = System.Text.Encoding.UTF8;
mail.BodyEncoding = System.Text.Encoding.UTF8;
SmtpClient smtp = new SmtpClient();
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials = true;
smtp.Host = "127.0.0.1";
smtp.Port = 25;
smtp.Send(mail);
Esta é a configuração do servidor IIS
Muito obrigado pela ajuda