Changes between Version 9 and Version 10 of TipAndDoc/network/mail/Postfix


Ignore:
Timestamp:
Oct 4, 2012 10:15:34 PM (12 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/network/mail/Postfix

    v9 v10  
    145145}}} 
    146146  * ex: !any_name_user@ALIASE.example.jp -> !any_name_user@ALIASE.mitty.jp 
     147 
     148 = postfix/anvil = 
     149 * /var/log/mail.logにおけるpostfix/anvilのstatistics間隔を延ばすには、流入するメッセージの流量が少ないSMTPサーバでは/etc/postfix/main.cfでanvil_rate_time_unitを大きくするだけでは不十分 
     150  * 一定時間(デフォルト100秒)接続がないと、anvilプロセスは終了し、その際にstatisticsを出力するため 
     151  * max_idleを延ばす必要がある 
     152 * [http://www.postfix-jp.info/trans-2.3/jhtml/anvil.8.html Postfix manual - anvil(8)] 
     153 > 診断 
     154 >        問題や処理は syslogd(8) に記録されます。 
     155 >  
     156 >        終了時および anvil_status_update_time 秒ごとに、サーバは 測 
     157 >        定された最大のカウントと速度を (service, client) 情報やそのイベントに対 
     158 >        応する時刻とともにログに記録します。不必要なオーバーヘッドを避 け る た 
     159 >        め、同時制限や速度制限されていない活動の測定はおこなわれません。 
     160 * [http://forums.gentoo.org/viewtopic-t-457503-start-0.html Gentoo Forums :: View topic - postifix, anvil and unwanted statistics [SOLVED]] 
     161 * [http://tech.groups.yahoo.com/group/postfix-users/message/243004 postfix-users : Message: Re: anvil logging] 
     162 > > Am I limited to setting anvil_status_update_time to something high? (~1 
     163 > > week) 
     164 > 
     165 > That would suck up an insane amount of memory when you get 
     166 > hit by a backscatter wave. 
     167 * [http://www.davekb.com/browse_computer_tips:postfix_less_anvil_logging:txt Dave's Brain - Browse - computer tips - postfix less anvil logging] 
     168 > In main.cf set this: 
     169 >      anvil_status_update_time = 1d 
     170 >  
     171 > That's once per day. 
     172 > And in master.cf add: 
     173 >      anvil     unix  -       -       n       -       1       anvil 
     174 >              -o max_idle=1d 
     175 > This is needed because Anvil will log each time its restarted (which is determined by max_idle).