繁体   English   中英

如何在 Canvas LMS 中设置 SMTP 设置?

[英]How to setup SMTP setting in Canvas LMS?

我已经在本地安装了Canvas LMS ,但我一直在寻找 SMTP 设置。 你能帮我如何前进吗? 我没有找到用于配置设置的 UI 屏幕。

在您的应用程序的config目录中,您将找到一个文件outgoing_mail.yml ,您必须为 SMTP 设置提供如下配置:

development:
  address: smtp.gmail.com
  enable_starttls_auto: true
  port: "587"
  user_name: support@example.com
  password: ************
  authentication: "login" 
  domain: gmail.com
  outgoing_address: support@example.com
  default_name: Canvas


test:
  delivery_method: "test"

production:
  address: smtp.gmail.com
  enable_starttls_auto: true
  port: "587"
  user_name: support@example.com
  password: ************
  authentication: "login" 
  domain: gmail.com
  outgoing_address: support@example.com
  default_name: Canvas

# If receiving mail from multiple inboxes (see incoming_mail.yml.example),
# you'll want to include those addresses in a reply_to_addresses array so
# Canvas will select the Reply-To field of outgoing messages from all of the
# incoming mailboxes.

multiple_inboxes:
  address: smtp.gmail.com
  enable_starttls_auto: true
  port: "587"
  user_name: support@example.com
  password: ************
  authentication: "login" 
  domain: gmail.com
  outgoing_address: support@example.com
  default_name: Canvas
  reply_to_addresses:
  - "canvas1@example.com"
  - "canvas2@example.com"
  - "canvas3@example.com"
  - "canvas4@example.com"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM