旧それなりブログの跡地、画像やスタイルやJSなどが壊れてることがあります。

MacのPostfixの起動時間を延長

2013年1月22日

Macにて、以下のコマンドでPostfixを起動しても
60秒でサービスが停止してしまう

sudo launchctl start org.postfix.master 

開発中は不便だよね、ということで
勝手にサービスが停止してしまうのが嫌ならこうする

sudo vim /System/Library/LaunchDaemons/org.postfix.master.plist

  (..略..)
  <array>
    <string>master</string>
    <string>-e</string>
    <string>60</string>  # これを 86400 とかにする
  </array>
  (..略..)

sudo launchctl unload /System/Library/LaunchDaemons/org.postfix.master.plist
sudo launchctl load /System/Library/LaunchDaemons/org.postfix.master.plist

補足: