Rails 3电子邮件问题:如何获取/usr/sbin/sendmail可执行文件?

发布于 2024-10-21 20:33:44 字数 242 浏览 4 评论 0原文

在rails 3 sendmail_settings中,有一个选项:location代表sendmail可执行文件的位置(默认为/usr/sbin/sendmail) 。在我的ubuntu操作系统机器中,/usr/sbin下没有这样的文件,那么我怎样才能获得/usr/sbin/sendmail可执行文件呢?

in rails 3 sendmail_settings, there is a option :location which represent the location of the sendmail executable (Defaults to /usr/sbin/sendmail). In my ubuntu OS machine, there is no such file under /usr/sbin, how can I get /usr/sbin/sendmail executable then?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野心澎湃 2024-10-28 20:33:44

如果您想覆盖 :sendmail 传递方法的选项,则可以使用 sendmail_settings。您可以在环境文件中覆盖这些设置。

config.action_mailer.sendmail_settings = {
  :location => '/usr/sbin/sendmail',
  :arguments => '-i -t'
}

If you want to override options for the :sendmail delivery method then you can use sendmail_settings. You can override these setting in your environment file.

config.action_mailer.sendmail_settings = {
  :location => '/usr/sbin/sendmail',
  :arguments => '-i -t'
}
淡淡绿茶香 2024-10-28 20:33:44

sudo apt-get install sendmail-bin。您应该使用包管理器进行搜索。它是 ubuntu .. 而且看起来 gzip 压缩的可执行文件可以在整个网络上找到。

sudo apt-get install sendmail-bin. You should have done a search using a package manager. It's ubuntu.. Also it looks like gzipped executables can be found all over the web.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文