[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[postfix-jp:02895] Re: メールが送信できない



お世話になっております。中田です。

松原様、中満様、荒木様、関根様 
度々ならぬアドバイスありがとうございます。

いろいろと調べもっては設定しているのですが
うまくメールが送信できません。

そこで 今一度 内容を整理してみました。
また アドバイスいただけましたら幸いでございます。

原因としては メールが送信できない。

起動停止は問題なくいっています。

13553 ?        S      0:00 /usr/libexec/postfix/master
13554 ?        S      0:00 pickup -l -t fifo -u
13555 ?        S      0:00 qmgr -l -t fifo -u

postfix checkも問題なしです。

ただ newaliasesをかけると
Segmentation fault (core dumped)いうところがあるのですが
この辺りが原因と思うのですが・・・
ちなみに postalias hash:aliasesとしましても
Segmentation fault (core dumped)といわれてしまいます。
Segmentation fault (core dumped)は何が原因なんでしょうか?


/etc/aliasesの内容はこのように書いております。

[root@dns /etc]# less /etc/aliases
postfix: root
stmaster: root
postfix: root
webmaster: root
root: root

[root@dns /etc]# newaliases
Segmentation fault (core dumped)


また メール配信ログを確認いたしますと

/var/log/maillog
May 14 11:51:13 dns postfix/smtpd[13587]: connect from unknown[***.***.***.***]
May 14 11:51:55 dns postfix/smtpd[13587]: 648309CF0: client=unknown[***.***.***.***]
May 14 11:52:14 dns postfix/cleanup[13588]: 648309CF0: message-id=<20030514025155.648309CF0@xxxxxxxxxxxx>
May 14 11:52:15 dns postfix/qmgr[13572]: 648309CF0: from=<root@xxxxxxx>, size=343, nrcpt=1 (queue active)
May 14 11:52:15 dns postfix/master[13553]: warning: process /usr/libexec/postfix/local pid 13589 killed by signal 11
May 14 11:52:15 dns postfix/master[13553]: warning: /usr/libexec/postfix/local: bad command startup -- throttling
May 14 11:52:15 dns postfix/qmgr[13572]: warning: premature end-of-input from private/local socket while reading input attribute name
May 14 11:52:15 dns postfix/qmgr[13572]: warning: private/local socket: malformed response
May 14 11:52:15 dns postfix/qmgr[13572]: warning: transport local failure -- see a previous warning/fatal/panic logfile record for the problem description
May 14 11:52:18 dns postfix/smtpd[13587]: disconnect from unknown[***.***.***.***]

となって警告文がだされているのですが・・・
from unknown[***.***.***.***]で 接続できないと言っているのでしょうか?


現在の環境を打ち出しておきます。

[root@dns /etc]# postconf -n

alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
debug_peer_level = 2
inet_interfaces = all
mail_owner = postfix
mail_spool_directory = /var/spool/mail
mailq_path = /usr/bin/mailq
manpage_directory = /usr/local/man
mydestination = $myhostname, localhost.$mydomain $mydomain
mydomain = hoge.jp
myhostname = mail.hoge.jp
mynetworks = 192.168.1.0/24, 127.0.0.0/8
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases
queue_directory = /var/spool/postfix
readme_directory = no
sample_directory = /etc/postfix
sendmail_path = /usr/sbin/sendmail
setgid_group = postdrop



以上となっております。
aliasesのところの問題だとは思うのですが
Segmentation fault (core dumped) での
解決方法がわかりません。


お手数をお掛けいたしますが
何卒 よろしくお願い致します。












On Tue, 13 May 2003 23:00:00 +0900
michihito matsubara <m-mitch@xxxxxxxxxxxxx> wrote:

> 松原です。
> 
> On Tue, 13 May 2003 22:18:30 +0900
> Subject: [postfix-jp:02881] Re: メールが送信できない(再送)
> Hideo NAKAMITSU <nomo@xxxxxxxxxxxxx> wrote:
> 
> > 中満です.
> > 
> > On Tue, 13 May 2003 22:04:35 +0900 (JST)
> > ARAKI Yasuhiro <yasu@xxxxxxxxxxxx> wrote:
> > 
> > > 例えば postmap -q かな。postmap: rootなら、こんなかんじで。
> > > 
> > > $ /usr/sbin/postmap -q postmaster hash:/etc/aliases
> > > root
> > 
> > あう,すみません.
> > 特定のキーから値を閲覧する上記の方法は知っておりました.
> > 
> > データベース内の全てのキーや値を確認するにはstringsや
> > db_dumpなど以外にpostfix付属のコマンドがあるのかな?
> > と思った次第でして.
> 
> 付属じゃなくてアレなんですが、
> こんなものを使ってます。
> 
> #!/usr/bin/perl -w
> 
> use DB_File;
> 
> my $key = '';
> my $val = '';
> my($dbfile, @JUNK) = @ARGV;
> 
> tie %DBM, "DB_File", $dbfile, O_RDWR, undef, $DB_HASH
>         or die "Cannot open file $dbfile: $!\n";
> 
> while (($key, $val) = each %DBM )
>   {
>   print $key . " => " . $val . "\n";
>   }
> 
> untie %DBM ;
> 
> exit;
> 
> sendmail の access.db なんかも見られます。
> 
> -- 
> Musashino-shi, Tokyo, Japan
> K12LTSP in Japanese ; http://open-mitch.dyndns.org/k12ltsp/
> 
> 

Follow-Ups
[postfix-jp:02897] Re: メールが送信できない, ANDO Koji
[postfix-jp:02899] Re: メールが送信できない, YOSHIMURA Keitaro
References
[postfix-jp:02881] Re: メールが送信できない(再送), Hideo NAKAMITSU
[postfix-jp:02883] Re: メールが送信できない(再送), michihito matsubara

[検索ページ] [Postfix-JP ML Home]