1

我是REDMINE的新手(我的版本是1.4.4)

我刚收到一个问题,有什么方法可以在 configuration.yml 文件上加密我的电子邮件密码,以设置电子邮件配置。

仅供参考,当前设置如下所示。

email_delivery:
    delivery_method: :smtp
    smtp_settings:
      tls: true
      address: smtp.gmail.com
      port: 587
      domain: smtp.gmail.com
      authentication: :plain
      user_name: "myEmailAddress@gmail.com"
      password: "myEmailPassword"     # I don't want to reveal my pw here :(
      enable_starttls_auto: true

提前谢谢。

4

1 回答 1

0

是的,你可以,但我知道的唯一方法是安装和使用 Postfix 作为中继并设置 stunnel 来处理加密的密码交换。

我以这种方式设置了一段时间,但现在我使用没有 stunnel 的 Postfix,因为 Amazon SES 服务现在支持 starttls。

我在原始设置中从该站点获得了帮助:http: //quietmint.com/linux/postfix-relaying-mail-through-an-smtps-smarthost-on-port-465/

我从这里获得帮助的最新设置: http ://blog.duoconsulting.com/2012/01/30/using-amazons-ses-with-postfix-as-a-smarthost-forwarder/

于 2013-04-02T15:10:20.993 回答