- 论坛徽章:
- 0
|
本帖最后由 tentenbear 于 2010-11-28 22:52 编辑
启动postfix就开始报错,
tail -f /var/log/maillog:
mail postfix/postfix-script: starting the Postfix mail system
Nov 28 20:53:22 mail postfix/master[31595]: daemon started -- version 2.2.5, configuration /etc/postfix
Nov 28 20:53:45 mail postfix/master[31595]: warning: process /usr/libexec/postfix/smtpd pid 31598 killed by signal 11
Nov 28 20:53:45 mail postfix/master[31595]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
Nov 28 20:54:45 mail postfix/master[31595]: warning: process /usr/libexec/postfix/smtpd pid 31600 killed by signal 11
Nov 28 20:54:45 mail postfix/master[31595]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
Nov 28 20:55:45 mail postfix/master[31595]: warning: process /usr/libexec/postfix/smtpd pid 31601 killed by signal 11
Nov 28 20:55:45 mail postfix/master[31595]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
Nov 28 20:56:45 mail postfix/master[31595]: warning: process /usr/libexec/postfix/smtpd pid 31602 killed by signal 11
Nov 28 20:56:45 mail postfix/master[31595]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
折腾好久了了,高手帮我分析下;
下面是我的配置文件main.cf
# vi /etc/postfix/main.cf
#=====================BASE=========================
myhostname = email.test.com
mydomain = test.com
myorigin = $mydomain
mydestination = $myhostname localhost localhost.$mydomain
mynetworks = 127.0.0.0/8
inet_interfaces = all
#=====================Vritual Mailbox settings=========================
virtual_mailbox_base = /var/mailbox
virtual_mailbox_maps = mysql:/etc/postfix/mysql/mysql_virtual_mailbox_maps.cf
virtual_mailbox_domains = mysql:/etc/postfix/mysql/mysql_virtual_domains_maps.cf
virtual_alias_domains =
virtual_alias_maps = mysql:/etc/postfix/mysql/mysql_virtual_alias_maps.cf
alias_maps = hash:/etc/postfix/aliases
virtual_uid_maps = static:1001
virtual_gid_maps = static:1001
virtual_transport = maildrop
maildrop_destination_recipient_limit = 1
maildrop_destination_concurrency_limit = 1
#====================QUOTA========================
message_size_limit = 14336000
virtual_mailbox_limit = 20971520
virtual_create_maildirsize = yes
virtual_mailbox_extended = yes
virtual_mailbox_limit_maps = mysql:/etc/postfix/mysql/mysql_virtual_mailbox_limit_maps.cf
virtual_mailbox_limit_override = yes
virtual_maildir_limit_message = Sorry, the user's maildir has overdrawn his diskspace quota, please try again later.
virtual_overquota_bounce = yes
#====================SASL========================
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions =
permit_mynetworks,
permit_sasl_authenticated,
reject_invalid_hostname,
reject_non_fqdn_hostname,
reject_unknown_sender_domain,
reject_non_fqdn_sender,
reject_non_fqdn_recipient,
reject_unknown_recipient_domain,
reject_unauth_pipelining,
reject_unauth_destination,
permit
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = $myhostname
smtpd_sasl_security_options = noanonymous
smtpd_sasl_application_name = smtpd
smtpd_banner=$myhostname ESMTP "Version not Available" |
|