0

私のpostfixでは、1時間に3600通のメールしか送信できませんでした(各メール間に1秒の遅延があると結論付けました)が、その数の2倍を送信したい.. postfix構成を調べました。できるパラメーターはありますか1 時間に 3600 件以上のメールを送信するように変更しますか? これはの出力ですpostconf -n

alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
bounce_queue_lifetime = 1d
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
debug_peer_level = 2
default_destination_concurrency_limit = 5
default_destination_rate_delay = 0s
html_directory = no
inet_interfaces = all
inet_protocols = ipv4
initial_destination_concurrency = 2
lmtp_destination_rate_delay = 0s
local_destination_rate_delay = 0s
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
maximal_queue_lifetime = 1d
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
mydomain = example.com
myhostname = server01.example.com
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases.postfix
qmgr_message_recipient_limit = 10000
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.5.6/README_FILES
relay_destination_rate_delay = 0s
sample_directory = /usr/share/doc/postfix-2.5.6/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtp_bind_address = xxx.xxx.xxx.xxx
smtp_destination_rate_delay = 0s
smtp_generic_maps = hash:/etc/postfix/generic
smtpd_banner = $myhostname ESMTP $mail_name
smtpd_client_restrictions = check_client_access hash:/etc/postfix/access
unknown_local_recipient_reject_code = 550
virtual_alias_maps = hash:/etc/postfix/virtual
virtual_destination_rate_delay = 0s
4

1 に答える 1

4

これを見て、

あなたはで遊ぶことができます

default_recipient_limit qmgr_message_recipient_limit default_destination_rate_delay

同じ宛先への個々の配信間に挿入されるデフォルトの遅延量。宛先ごとの受信者制限 > 1 の場合、宛先はドメインであり、それ以外の場合は受信者です。

遅延を有効にするには、ゼロ以外の時間値 (整数値と時間単位を指定するオプションの 1 文字のサフィックス) を指定します。

時間単位: s (秒)、m (分)、h (時間)、d (日)、w (週)。デフォルトの時間単位は s (秒) です。

注: 遅延は、キュー マネージャーによって強制されます。遅延タイマーの状態は、「postfix reload」または「postfix stop」では存続しません。

transport_destination_rate_delay を使用して、トランスポート固有のオーバーライドを指定します。ここで、transport はメッセージ配信トランスポートの master.cf 名です。

この機能は Postfix 2.5 以降で利用できます。 http://www.postfix.org/postconf.5.html

于 2010-05-13T12:52:55.383 に答える