redmine邮箱配置文件
时间: 2023-08-04 17:08:34 浏览: 564
redmine配置文档
在 Redmine 中,您可以通过编辑配置文件来配置电子邮件设置。默认情况下,配置文件位于 Redmine 安装目录的“config”文件夹中,名为“configuration.yml”。
以下是配置电子邮件设置的示例配置文件。您需要将其中的参数替换为您自己的 SMTP 服务器和电子邮件设置。
```
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
address: "smtp.example.com"
port: 587
domain: "example.com"
authentication: :login
user_name: "your_username"
password: "your_password"
enable_starttls_auto: true
```
在上面的示例中,您需要将“address”替换为您的 SMTP 服务器的主机名或 IP 地址,“port”替换为 SMTP 服务器使用的端口号,“domain”替换为您的邮件服务器的域名,“user_name”替换为您的 SMTP 账户的用户名,“password”替换为您的 SMTP 账户的密码。
完成后,保存配置文件并重新启动 Redmine 以使更改生效。
阅读全文