SMTP one more time, with all the details

2014-11-07 Thread DaleKelly

(my ~/.muttrc is below)

I am compiling from source (1.5.1.23)
got the message on the dev list that SSLv3 had a security issue
don't know if a previous version has SMTP

I added --config-pop --config-smtp --with-ssl --with-sasl
to the ./comfigure command
then sudo make clean
then sudo make
then sudo make install

when I run

echo Test | mutt -s Hello d...@dalekelly.org

I get

TLSv1 connection using TLSv1/SSLv3 (DHE-RSA-AES256-SHA)
SMTP session failed: 530 authentication required
Could not send the message.

I get no prompt for username and password

I added only one change to the sample.muttrc
and saved it to ~/.muttrc
set smtp_url=smtps://smtpout.secureserver.net:465

I don't get a prompt for username or password
when I add
set stmp_user=
set smtp_pass=
it doesn't do anything different

if I do mutt -v I get

Mutt 1.5.23 (2014-03-12)
Copyright (C) 1996-2009 Michael R. Elkins and others.
Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.
Mutt is free software, and you are welcome to redistribute it
under certain conditions; type `mutt -vv' for details.

System: Linux 3.13.0-39-generic (i686)
ncurses: ncurses 5.9.20140118 (compiled with 5.9)

Compiler:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.8/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
4.8.2-19ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs 
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr 
--program-suffix=-4.8 --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib 
--enable-nls --with-sysroot=/ --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-libstdcxx-time=yes 
--enable-gnu-unique-object --disable-libmudflap --enable-plugin 
--with-system-zlib --disable-browser-plugin --enable-java-awt=gtk 
--enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-i386/jre 
--enable-java-home 
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-i386 
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-i386 
--with-arch-directory=i386 
--with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc 
--enable-targets=all --enable-multiarch --disable-werror 
--with-arch-32=i686 --with-multilib-list=m32,m64,mx32 
--with-tune=generic --enable-checking=release --build=i686-linux-gnu 
--host=i686-linux-gnu --target=i686-linux-gnu

Thread model: posix
gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)

Configure options: '--enable-pop' '--enable-smtp' '--with-ssl' '--with-sasl'

Compilation CFLAGS: -Wall -pedantic -Wno-long-long -g -O2

Compile options:
-DOMAIN
-DEBUG
-HOMESPOOL  +USE_SETGID  +USE_DOTLOCK  +DL_STANDALONE  +USE_FCNTL 
-USE_FLOCK

+USE_POP  -USE_IMAP  +USE_SMTP
+USE_SSL_OPENSSL  -USE_SSL_GNUTLS  +USE_SASL  -USE_GSS  +HAVE_GETADDRINFO
+HAVE_REGCOMP  -USE_GNU_REGEX
+HAVE_COLOR  +HAVE_START_COLOR  +HAVE_TYPEAHEAD  +HAVE_BKGDSET
+HAVE_CURS_SET  +HAVE_META  +HAVE_RESIZETERM
+CRYPT_BACKEND_CLASSIC_PGP  +CRYPT_BACKEND_CLASSIC_SMIME 
-CRYPT_BACKEND_GPGME

-EXACT_ADDRESS  -SUN_ATTACHMENT
+ENABLE_NLS  -LOCALES_HACK  +HAVE_WC_FUNCS  +HAVE_LANGINFO_CODESET 
+HAVE_LANGINFO_YESEXPR

+HAVE_ICONV  -ICONV_NONTRANS  -HAVE_LIBIDN  +HAVE_GETSID  -USE_HCACHE
-ISPELL
SENDMAIL=/usr/sbin/sendmail
MAILPATH=/var/mail
PKGDATADIR=/usr/local/share/mutt
SYSCONFDIR=/usr/local/etc
EXECSHELL=/bin/sh
-MIXMASTER
To contact the developers, please mail to mutt-...@mutt.org.
To report a bug, please visit http://bugs.mutt.org/.

HERE IS MY ~/.muttrc

# $Id$

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#
# ME's personal .muttrc (Mutt 0.92.5)
#
# The format of this file is one command per line.  Everything after a pound
# sign (#) is a comment, unless a backward slash (\) precedes it.  Note: In
# folder-hook and send-hook you need to account for two levels of dequoting
# (see manual).
#

# Note: $folder should be set _before_ any other path vars where `+' or `='
# is used because paths are expanded when parsed
#
#set folder=~/Mail  # where i keep my mailboxes

#set abort_unmodified=yes   # automatically abort replies if I don't
# change the message
set alias_file=~/.mail_aliases  # where I keep my aliases
#set allow_8bit # never do Q-P encoding on legal 8-bit chars
set arrow_cursor# use - instead of hiliting the whole line
#set ascii_chars# use ASCII instead of ACS chars for threads
#set askbcc
#set askcc
#set attribution=On %d, %n wrote:   # how to attribute replies
set autoedit# go to the editor right away when composing
#set auto_tag   # always operate on tagged messages
#set charset=iso-8859-1 # character set for your terminal
set noconfirmappend # don't ask me if i want to append to mailboxes
#set confirmcreate  # 

Re: SMTP one more time, with all the details

2014-11-07 Thread David Champion
* On 07 Nov 2014, DaleKelly wrote: 
 
 I get no prompt for username and password

No, you wouldn't because nothing in your configuration indicates
definitively that you want AUTH-SMTP.

 I added only one change to the sample.muttrc
 and saved it to ~/.muttrc
 set smtp_url=smtps://smtpout.secureserver.net:465
 
 I don't get a prompt for username or password
 when I add
 set stmp_user=

You need EITHER:
  set smtp_url=smtps://usern...@smtpout.secureserver.net:465
OR:
  set smtp_user=username

I believe you'll be prompted for a password then.

-- 
David Champion • d...@bikeshed.us


Re: SMTP one more time, with all the details

2014-11-07 Thread DaleKelly

On 11/07/2014 11:28 PM, David Champion wrote:

* On 07 Nov 2014, DaleKelly wrote:


I get no prompt for username and password


No, you wouldn't because nothing in your configuration indicates
definitively that you want AUTH-SMTP.


I added only one change to the sample.muttrc
and saved it to ~/.muttrc
set smtp_url=smtps://smtpout.secureserver.net:465

I don't get a prompt for username or password
when I add
set stmp_user=


You need EITHER:
   set smtp_url=smtps://usern...@smtpout.secureserver.net:465
OR:
   set smtp_user=username

I believe you'll be prompted for a password then.



I tried smtp_user
same error
same no prompt for password
I have tried with and without 

--
(my whereabouts below)
http://www.dalekelly.org/


Re: SMTP one more time, with all the details

2014-11-07 Thread Patrick Shanahan
* DaleKelly d...@dalekelly.org [11-07-14 22:57]:
 (my ~/.muttrc is below)
 
 I am compiling from source (1.5.1.23)
 got the message on the dev list that SSLv3 had a security issue
 don't know if a previous version has SMTP
 
 I added --config-pop --config-smtp --with-ssl --with-sasl
 to the ./comfigure command
 then sudo make clean
 then sudo make
 then sudo make install

guess maybe you should try:
  make clean
  make
  sudo make install

still trying to figure why you find the need to compile rather than use
the binaries provided which usually have all the capabilites necessary.
-- 
(paka)Patrick Shanahan   Plainfield, Indiana, USA  @ptilopteri
http://en.opensuse.orgopenSUSE Community Memberfacebook/ptilopteri
http://wahoo.no-ip.orgPhoto Album: http://wahoo.no-ip.org/gallery2
Registered Linux User #207535@ http://linuxcounter.net


Re: SMTP one more time, with all the details

2014-11-07 Thread DaleKelly

On 11/08/2014 12:15 AM, Patrick Shanahan wrote:

* DaleKelly d...@dalekelly.org [11-07-14 22:57]:

(my ~/.muttrc is below)

I am compiling from source (1.5.1.23)
got the message on the dev list that SSLv3 had a security issue
don't know if a previous version has SMTP

I added --config-pop --config-smtp --with-ssl --with-sasl
to the ./comfigure command
then sudo make clean
then sudo make
then sudo make install


guess maybe you should try:
   make clean
   make
   sudo make install


okay. that's next



still trying to figure why you find the need to compile rather than use
the binaries provided which usually have all the capabilites necessary.



I did try after I compiled, both had the same problems, I don't know how 
to remove a compiled version


for the binary in the Ubuntu repository, I just remove it with
sudo apt-get remove mutt

one thing to note is that my username is my email address, doesn't cause 
a problem in Thunderbird


but if I try it with smtp_user in my ~/.muttrc it gives my the same 
error as if no smtp_user

SMTP session failed: 530 authentication required

also tried putting my username in the smtp_url statement, same error


--
(my whereabouts below)
http://www.dalekelly.org/


Re: SMTP one more time, with all the details

2014-11-07 Thread John Niendorf

Dale,

What happens when you put this in your .muttrc file?

set smtp_url=smtps://your_email_addr...@email.server.com/465
set smtp_pass=your_password
--
John