[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [msmtp-users] DSN
On Thu, 25. Aug 2005, 16:25:04 -0700, Nikil Mehta wrote:
> My server does not support DSN notification as evidenced by "msmtp
> --serverinfo". Therefore, I have turned it off in all the places I
> can think of:
>
> .muttrc:
> set dsn_notify = "never"
> set sendmail = "/usr/local/bin/msmtp -N never -R off"
>
> .msmtprc:
> dsn_notify = never
> dsn_return = off
Your settings do not turn off DSN. Use this instead:
.muttrc:
set dsn_notify = ""
set dsn_return = ""
set sendmail = "/usr/local/bin/msmtp"
.msmtprc
dsn_notify off
dsn_return off
The value "never" for dsn_notify will cause mutt to append "-N never" to
the msmtp command line (which you also did manually).
"-N never" means that you request, by using the DSN extension, that the
server never sends Delivery Status Notifications to you.
See the dsn_notify command description in the msmtp documentation.
Regards,
Martin