You are not logged in.
Hi,
I started to configure the mutt file for my email address hosted on mail.mailoo.org server but I've a problem when I want to send a message (with SMTP).
I've read the Wiki about smtp and the mailoo.org page about the ports but it's still the same issue, I can't send emails.
Here's my .muttrc
1 set editor=vim
2 set send_charset="utf-8"
3 #set record="$HOME/.mutt/sent"
4
5 source "gpg2 -dq ~/.mutt/pass/.pass.gpg |"
6 set folder = imaps://mail.mailoo.org:993
7 set imap_user = neandermacl@mailoo.org
8 set imap_pass = $my_pw_personal
9 set spoolfile = +INBOX
10 mailboxes = +INBOX
11
12 set header_cache = "~/.mutt/cache"
13 set message_cachedir = "~/.mutt/cache"
14 set mail_check = 120
15 set mbox_type=Maildir
16 set folder=$HOME/.mutt/mail
17 set header_cache=~/.mutt/cache
18
19 set smtp_url=smtp://$imap_user:$imap_pass@mail.mailoo.org
20 #set smtp_url=smtp://mail.mailoo.org
21 set realname='NeanderMarc'
22 set from=neandermarcl@mailoo.org
23 set signature="NeanderMarcl"
24 set ssl_starttls = yes
25 #set ssl_force_tls = yes
Thanks
Last edited by NeanderMarcl (2013-06-25 18:44:27)
Offline
You need to set the port for smtp too:
set smtp_url = "smtp://$username@mail.mailoo.org:587/"
Port 587 is for TLS.
Last edited by illusionist (2013-06-23 01:42:06)
Never argue with stupid people,They will drag you down to their level and then beat you with experience.--Mark Twain
@github
Offline
Thanks
Offline