web-dev-qa-db-ja.com

CentOS 6サーバーで「メール」を取得する方法(postfixを実行)

私の古いサーバー、および私が実行した他のほとんどのデバイスには、提供されているmailプログラムがあります。

MTAとしてpostfixを実行している新しいCentOS6サーバーでは、mailを介してコマンドラインメールを送信できません-ツールがありません。

yum whatprovides mail呼び出しを実行すると、何も役に立ちません。

$ yum whatprovides mail
Loaded plugins: fastestmirror
Determining fastest mirrors
 * base: centos.kiewel-online.ch
 * extras: centos.kiewel-online.ch
 * updates: centos.kiewel-online.ch
base                                                     | 3.7 kB     00:00
base/primary_db                                          | 4.2 MB     00:00
cr                                                       | 3.5 kB     00:00
cr/primary_db                                            | 3.9 MB     00:00
extras                                                   | 3.0 kB     00:00
extras/primary_db                                        | 1.9 kB     00:00
updates                                                  | 3.5 kB     00:00
updates/primary_db                                       | 3.3 MB     00:00
Warning: 3.0.x versions of yum would erroneously match against filenames.
 You can use "*/mail" and/or "*bin/mail" to get that behaviour
No Matches found

CentOS 6ではユーザー間メールはどのように送信されることになっていますか?

3
warren

CentOSでは、このバイナリはmailxパッケージによって提供されます。

yum install mailx

参考までに、投稿の下部にあるメッセージが示すように、whatprovidesを誤って使用しています。 'mail'というファイルのミラーを検索する適切な使用法は次のようになります。

yum whatprovides */mail
9
Garrett