AMC

選択式試験問題マークシート自動採点

その他

AMCでGMAILを使用するための設定

Gmailアカウントにログインし、「安全性の低いアプリの許可」を有効にします。(訳注: Googleの「アカウント情報」から「ログインとセキュリティ」を開くと、最下部にあります。)

Linuxユーザ(Ubuntu、Xubuntu、Lubuntu等)

端末で以下を入力します:

sudo apt-get install msmtp
sudo gedit /etc/msmtprc

msmtprcファイルに以下の内容を追加して保存します。

account gmail
host smtp.gmail.com
tls on
tls_certcheck off
port 587
auth login
from your_user_name@gmail.com
user your_user_name@gmail.com
password your_password

AMCを設定します:編集設定メールメール配信方法sendmailを選択し、sendmailのパスを

/usr/bin/msmtp

に設定します。

Macintoshユーザ

端末で以下を入力します:

sudo port install msmtp
sudo pico ~/.msmtprc

msmtprcファイルに以下の内容を追加して保存します。

account gmail
host smtp.gmail.com
tls on
tls_certcheck off
port 587
auth login
from your_user_name@gmail.com
user your_user_name@gmail.com
password your_password

AMCを設定します:編集設定メールメール配信方法sendmailを選択し、sendmailのパスを

/opt/local/bin/msmtp

に設定します。