postfixを利用して、
メール送信をおこないたいのですが、
下記のエラーが出て
メール送信がうまくいきません。
なお、postfixはAWSのEC2内にインストールして利用しています。
メールの送信方法は以下のようにおこないました
sendmail "Toメールアドレス" From:"このサーバのメールアドレス" To:"Toメールアドレス" Subject:test test .
送信後の/var/log/maillogが下記になります。
Aug 7 14:00:33 ip-10-0-0-112 postfix/pickup[11507]: 86FB040E52: uid=0 from=<root> Aug 7 14:00:33 ip-10-0-0-112 postfix/cleanup[11682]: 86FB040E52: message-id=<20150807140033.86FB040E52@"hostname"> Aug 7 14:00:33 ip-10-0-0-112 postfix/qmgr[8232]: 86FB040E52: from=<root@"hostname">, size=282, nrcpt=1 (queue active) Aug 7 14:00:33 ip-10-0-0-112 postfix/smtpd[11685]: warning: No server certs available. TLS won't be enabled Aug 7 14:00:33 ip-10-0-0-112 postfix/smtpd[11685]: connect from "hostname"["IPアドレス"] Aug 7 14:00:33 ip-10-0-0-112 postfix/smtpd[11685]: warning: SASL: Connect to private/auth failed: No such file or directory Aug 7 14:00:33 ip-10-0-0-112 postfix/smtpd[11685]: fatal: no SASL authentication mechanisms Aug 7 14:00:34 ip-10-0-0-112 postfix/master[8229]: warning: process /usr/libexec/postfix/smtpd pid 11685 exit status 1 Aug 7 14:00:34 ip-10-0-0-112 postfix/master[8229]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling Aug 7 14:00:34 ip-10-0-0-112 postfix/smtp[11684]: 86FB040E52: to=<"任意のメールアドレス">, relay="hostname"["IPアドレス"]:25, delay=29, delays=28/0/1/0, dsn=4.4.2, status=deferred (lost connection with "hostname"["IPアドレス"] while receiving the initial server greeting)
main.cfの設定が下記になります。
postconf -n alias_database = hash:/etc/aliases alias_maps = hash:/etc/aliases broken_sasl_auth_clients = yes command_directory = /usr/sbin config_directory = /etc/postfix daemon_directory = /usr/libexec/postfix data_directory = /var/lib/postfix debug_peer_level = 2 home_mailbox = Maildir/ html_directory = no inet_interfaces = all inet_protocols = all mail_owner = postfix mailbox_size_limit = 1073741824 mailq_path = /usr/bin/mailq.postfix manpage_directory = /usr/share/man message_size_limit = 10485760 mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain mydomain = "domain" myhostname = "hostname" mynetworks = 10.0.0.0/16 myorigin = $myhostname newaliases_path = /usr/bin/newaliases.postfix queue_directory = /var/spool/postfix readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES relayhost = ["hostname"] sample_directory = /usr/share/doc/postfix-2.6.6/samples sendmail_path = /usr/sbin/sendmail.postfix setgid_group = postdrop smtpd_banner = $myhostname ESMTP unknown smtpd_recipient_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination smtpd_sasl_auth_enable = yes smtpd_sasl_path = private/auth smtpd_sasl_type = dovecot smtpd_use_tls = yes unknown_local_recipient_reject_code = 550
現在行ったことは、
smtpd_recipient_restrictions = permit_mynetworks,permit_sasl_authenticated,reject_unauth_destination
の確認と
smtpd_sasl_local_domain = $myhostname
の追加です
参考ページが下記になります。
http://kajuhome.com/patio_thread/1118.shtml
http://www.kumakake.com/%E6%9C%AA%E5%88%86%E9%A1%9E/315
何卒よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2015/08/07 19:48