Hi,
Rails' Action Mailer's default arguments for Sendmail are -i and -t
(http://guides.rubyonrails.org/action_mailer_basics.html):
config.action_mailer.sendmail_settings = { location: "/usr/sbin/sendmail",
arguments: "-i -t"}
If I switch OpenSMTPD: config.action_mailer.sendmail_settings = { location:
"/usr/sbin/smtpctl" } -- should I have to worry about replacing -i and -t?
# man sendmail
-i Do not strip a leading dot from lines in incoming messages,
and do not treat a dot on a line by itself as the end of an
incoming message. This should be set if you are reading data
from a file.
-t Read message for recipients. To:, Cc:, and Bcc: lines will
be scanned for recipient addresses. The Bcc: line will be
deleted before transmission.
O.D.