On Thu, May 19, 2005 at 09:08:09PM +0600, Alexander E. Patrakov wrote:
I added msmtp because it works for me and supports SSL. Is it a good choice? Do you know any better SMTP mailer for Mutt?
ssmtp can't possibly get any easier. Here's the config:
######################################################################## # Example for SMTP non-standard port number 2525 # mailhub=mail.your.domain:2525 mailhub=whatever
# Where will the mail seem to come from? rewriteDomain=
# The full hostname (or just domain if that is how your address is) hostname=$hostname.$domain ########################################################################
This is my .msmtprc:
account default host ums.usu.ru port 465 from [EMAIL PROTECTED] auth on user patrakov password guess_it tls on tls_starttls off
In .muttrc, the following lines are needed:
set [EMAIL PROTECTED] set realname="Alexander E. Patrakov" set use_from=yes set envelope_from=yes set send_charset="us-ascii:koi8-r:utf-8" set sendmail="/usr/bin/msmtp"
So it is not much harder than your ssmtp example, so I don't see the need to put ssmtp here because it only duplicatse msmtp functionality. Am I overlookng something here?
As for NNTP support, I have already added the NNTP patch to Mutt.
-- Alexander E. Patrakov -- http://linuxfromscratch.org/mailman/listinfo/livecd FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
