개인 iRedMial 서버, 이메일 헤더의 [127.0.0.1]

개인 iRedMial 서버, 이메일 헤더의 [127.0.0.1]

CentOS6에 iRedMail을 사용하여 개인 이메일 서버를 설치했습니다. 이를 사용하여 Outlook 계정으로 이메일을 보내면 헤더에 다음과 같은 "127.0.0.1"이 표시됩니다.

<blink>

I have installed a private email server using iRedMail on CentOS6. When I used it to send email to my outlook account, I found '127.0.0.1' in the header, the header show below:

<code>
x-store-info:4r51+eLowCe79NzwdU2kRyU+pBy2R9QCCqBNiBLR/yls0BoNbTHNzodM77HDB36iyk5ZBzqcXCVkFUHscSOlWuYdBLP6fzGxAYcwEDRkN6dTR+oUakT6ZdlWGlcaxL2z1N3tMpU1rVw=
Authentication-Results: hotmail.com; spf=softfail (sender IP is 89.***.***.171; identity alignment result is pass and alignment mode is relaxed) [email protected]; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=outlook.com; x-hmca=fail [email protected]
X-SID-PRA: [email protected]
X-AUTH-Result: FAIL
X-SID-Result: FAIL
X-Message-Status: n:n
X-Message-Delivery: Vj0xLjE7dXM9MDtsPTA7YT0wO0Q9MjtHRD0yO1NDTD02
X-Message-Info: M98loaK0Lo2XMbcPamiQkpO+xJvB2uwbihYH5SYjkZZFRNQTaSCvCUd/itHi/2Z/Dxduhk5lYUNSiDE4GU+PUNbDmxDdLTU3nhQn/J1qti+xpM8d/JBaxDpn8UyWgS/4vcQYd1JbxFh7TawrHhaQ9rkJZJLRRetAff4zhjWfsuawkdewoWwJRZbVVvgzKUypOi8M2ihwn5y+mvzUwn2ld9H/1W7NncBK2+Q59+YmV7KbzWmu//gRBA==
Received: from mail.mydomain.com ([89.***.***.171]) by COL004-MC5F27.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23143);
     Thu, 20 Aug 2015 02:20:18 -0700
Received: from mail.mydomain.com (mail.mydomain.com [127.0.0.1])
    by mail.mydomain.com (Postfix) with ESMTP id 625EB1C06B7
    for <[email protected]>; Thu, 20 Aug 2015 11:20:30 +0200 (CEST)
X-Virus-Scanned: amavisd-new at mail.mydomain.com
Received: from mail.mydomain.com ([127.0.0.1])
    by mail.mydomain.com (mail.mydomain.com [127.0.0.1]) (amavisd-new, port 10024)
    with ESMTP id m7eG6oP8jkcB for <[email protected]>;
    Thu, 20 Aug 2015 11:20:29 +0200 (CEST)
Received: from _ (mail.mydomain.com [127.0.0.1])
    by mail.mydomain.com (Postfix) with ESMTPSA id 8E3B81C06A8
    for <[email protected]>; Thu, 20 Aug 2015 11:20:29 +0200 (CEST)
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII;
 format=flowed
Content-Transfer-Encoding: 7bit
Date: Thu, 20 Aug 2015 17:20:28 +0800
From: myname <[email protected]>
To: [email protected]
Subject: Server Error
Message-ID: <[email protected]>
X-Sender: [email protected]
User-Agent: Roundcube Webmail
Return-Path: [email protected]
X-OriginalArrivalTime: 20 Aug 2015 09:20:18.0415 (UTC) FILETIME=[6E48C7F0:01D0DB29]
</code>

Hello,
   My email server has an error.
</blink>

누구든지 나를 도와줄 수 있나요?

답변1

웹메일 - 127.0.0.1:25

roundcube메일은 smtp 연결을 통해 메시지를 에 제출합니다 127.0.0.1:25. 웹메일은 이 헤더에 표시되지 sendmail않도록 명령(postfix에서 제공)을 직접 실행할 수 있습니다.127.0.0.1

Received: from _ (mail.mydomain.com [127.0.0.1])
    by mail.mydomain.com (Postfix) with ESMTPSA id 8E3B81C06A8
    for <[email protected]>; Thu, 20 Aug 2015 11:20:29 +0200 (CEST)
...
User-Agent: Roundcube Webmail

스팸 방지 "샌드위치"

귀하의 SMTP/MTA/postfix 서버는 SMTP를 통해 amavis(스팸 방지)로 메일을 전달하고 smtp를 통해 다시 수신합니다. Milter(amavisd milter 또는 MIMEDefang milter)를 사용하여 다른 방법으로 spamassassin을 postfix/sendmail과 통합할 수 있습니다.

Received: from mail.mydomain.com (mail.mydomain.com [127.0.0.1])
    by mail.mydomain.com (Postfix) with ESMTP id 625EB1C06B7
    for <[email protected]>; Thu, 20 Aug 2015 11:20:30 +0200 (CEST)
X-Virus-Scanned: amavisd-new at mail.mydomain.com
Received: from mail.mydomain.com ([127.0.0.1])
    by mail.mydomain.com (mail.mydomain.com [127.0.0.1]) (amavisd-new, port 10024)
    with ESMTP id m7eG6oP8jkcB for <[email protected]>;
    Thu, 20 Aug 2015 11:20:29 +0200 (CEST)

관련 정보