msmtp
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(msmtp);
*目次 [#fc188e5e]
#contents
*関連ページ [#u9ef137d]
-[[ssmtp]]
*参考情報 [#o2483a77]
-[[msmtp - about:https://marlam.de/msmtp/]]
-[[msmtpで外部のSMTPサーバを利用してメール送信する - long...
*インストール [#c11ac9ff]
-Ubuntu 20.04の場合
apt install msmtp msmtp-mta
-CentOS8の場合以下のコマンドでインストールできる。
dnf install msmtp
*設定ファイルの作成 [#uf928009]
-/etc/msmtprcまたは~/.msmtprc
-/usr/share/doc/msmtp/msmtprc-user.exampleをコピーして使...
#pre{{
# default value
defaults
tls on
tls_trust_file /etc/ssl/certs/ca-bundle.crt
syslog on
aliases /etc/aliases
# account settings
account myaccount
host example.com
port 587
from test@example.com
auth on
user testuser
password testpass
# Set a default account
account default : myaccount
}}
-以下のコマンドでテストできる。この場合デフォルトの「myac...
echo -ne "Subject: test mail 4 \n\nhello test mail" | ms...
-/etc/aliasesで「root: foo@bar.com」と設定しておくと、以...
echo -ne "Subject: test mail 4 \n\nhello test mail" | ms...
-「-a」を省略するとデフォルトのアカウントが使われる。
echo -ne "Subject: test mail 4 \n\nhello test mail" | ms...
終了行:
&tag(msmtp);
*目次 [#fc188e5e]
#contents
*関連ページ [#u9ef137d]
-[[ssmtp]]
*参考情報 [#o2483a77]
-[[msmtp - about:https://marlam.de/msmtp/]]
-[[msmtpで外部のSMTPサーバを利用してメール送信する - long...
*インストール [#c11ac9ff]
-Ubuntu 20.04の場合
apt install msmtp msmtp-mta
-CentOS8の場合以下のコマンドでインストールできる。
dnf install msmtp
*設定ファイルの作成 [#uf928009]
-/etc/msmtprcまたは~/.msmtprc
-/usr/share/doc/msmtp/msmtprc-user.exampleをコピーして使...
#pre{{
# default value
defaults
tls on
tls_trust_file /etc/ssl/certs/ca-bundle.crt
syslog on
aliases /etc/aliases
# account settings
account myaccount
host example.com
port 587
from test@example.com
auth on
user testuser
password testpass
# Set a default account
account default : myaccount
}}
-以下のコマンドでテストできる。この場合デフォルトの「myac...
echo -ne "Subject: test mail 4 \n\nhello test mail" | ms...
-/etc/aliasesで「root: foo@bar.com」と設定しておくと、以...
echo -ne "Subject: test mail 4 \n\nhello test mail" | ms...
-「-a」を省略するとデフォルトのアカウントが使われる。
echo -ne "Subject: test mail 4 \n\nhello test mail" | ms...
ページ名: