서버를 다시 시작하면 postfix가 시작됩니다. 를 실행하여 이를 확인할 수 있습니다 postfix status
. "Postfix 메일 시스템이 실행 중입니다"라고 뜹니다. 그러나 PHP 스크립트에서 이메일을 보내려고 하면 전송되지 않고 메일 대기열에만 남아 있습니다. 입력하여 이를 확인할 수 있으며 mailq
전송되어야 하는 메시지가 표시됩니다. 내가 재부팅하면접미사, 서버 대신 postfix stop
then 을 실행하면 postfix start
30초에서 1분 안에 이메일이 전달됩니다. Postfix가 작동하게 하려면 왜 Postfix를 다시 시작해야 합니까?
여기 모든 주석이 제거된 /etc/postfix/main.cf 파일이 있습니다.
queue_directory = /var/spool/postfix
command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
mail_owner = postfix
myhostname = myhostname.mydomain.com #I actually have my real domain on my server entered here
mydomain = mydomain.com.com #I have the real domain on my server
myorigin = $myhostname
inet_interfaces = $myhostname
inet_protocols = all
mydestination = $myhostname, localhost.$mydomain, localhost
unknown_local_recipient_reject_code = 550
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
debug_peer_level = 2
debugger_command =
PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
ddd $daemon_directory/$process_name $process_id & sleep 5
sendmail_path = /usr/sbin/sendmail.postfix
newaliases_path = /usr/bin/newaliases.postfix
mailq_path = /usr/bin/mailq.postfix
setgid_group = postdrop
html_directory = no
manpage_directory = /usr/share/man
sample_directory = /usr/share/doc/postfix/samples
readme_directory = /usr/share/doc/postfix/README_FILES
명령의 경우 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
data_directory = /var/lib/postfix
debug_peer_level = 2
debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin ddd $daemon_directory/$process_name $process_id & sleep 5
html_directory = no
inet_interfaces = $myhostname
inet_protocols = all
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
mydestination = $myhostname, localhost.$mydomain, localhost
mydomain = domain.com # real domain replaced for anonymity
myhostname = host.domain.com #real was taken out
myorigin = $myhostname
newaliases_path = /usr/bin/newaliases.postfix
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix/README_FILES
sample_directory = /usr/share/doc/postfix/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
unknown_local_recipient_reject_code = 550