LoginSignup
11
12

More than 5 years have passed since last update.

Linuxチートシート|Mailサーバ(Postfix)編

Last updated at Posted at 2016-09-29

メモ

  • PostfixはSendmail互換のメール転送エージェント

チートシート

# メール送信
$ mail MAILADDRESS

# Postfixサービスの起動/再起動/終了
$ systemctl start postfix
$ systemctl restart postfix
$ systemctl stop postfix

# Postfixサービスの自動起動の有効化/無効化
$ systemctl enable postfix
$ systemctl disable postfix

# Postfixの設定値を確認
$ postconf

# Postfixの設定値を確認(デフォルト設定からの変更分のみ)
$ postconf -n

# /etc/postfix/accessファイルをバイナリ化
$ postmap /etc/postfix/access

設定ファイル

# Postfixの設定ファイル
/etc/postfix/main.cf

# アクセス制御
/etc/postfix/access

# ログ
/var/log/maillog

各種設定の参考

11
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
12