Browse Source

465 now default instead of 587

tags/v3.3
Luke Smith 2 years ago
parent
commit
a3fc13e5ce
No known key found for this signature in database GPG Key ID: 4C50B54A911F6252
4 changed files with 6 additions and 6 deletions
  1. +1
    -1
      README.md
  2. +3
    -3
      bin/mw
  3. +1
    -1
      mw.1
  4. +1
    -1
      share/domains.csv

+ 1
- 1
README.md View File

@@ -91,7 +91,7 @@ The mutt-wizard runs via the command `mw`. Once setup is complete, you'll use
- `-i` -- IMAP server address - `-i` -- IMAP server address
- `-I` -- IMAP server port (otherwise assumed to be 993) - `-I` -- IMAP server port (otherwise assumed to be 993)
- `-s` -- SMTP server address - `-s` -- SMTP server address
- `-S` -- SMTP server port (otherwise assumed to be 587)
- `-S` -- SMTP server port (otherwise assumed to be 465)
- `-m` -- Maximum number of emails to be kept offline. No maximum is default - `-m` -- Maximum number of emails to be kept offline. No maximum is default
functionality. functionality.
- `-x` -- Account password. You will be prompted for it otherwise. - `-x` -- Account password. You will be prompted for it otherwise.


+ 3
- 3
bin/mw View File

@@ -40,7 +40,7 @@ list() { getaccounts && [ -n "$accounts" ] && echo "$accounts" || exit 1 ;}


prepmsmtp() { echo "account $fulladdr prepmsmtp() { echo "account $fulladdr
host $smtp host $smtp
port ${sport:-587}
port ${sport:-465}
from $fulladdr from $fulladdr
user $login user $login
passwordeval \"pass $fulladdr\" passwordeval \"pass $fulladdr\"
@@ -48,7 +48,7 @@ auth ${auth:-on}
tls on tls on
tls_trust_file $sslcert tls_trust_file $sslcert
logfile $msmtplog logfile $msmtplog
$tlsline
${tlsline:-tls_starttls off}
" >> "$msmtprc" " >> "$msmtprc"
} }


@@ -193,7 +193,7 @@ askinfo() { \
read -r imap read -r imap
[ -z "$smtp" ] && echo "Give your email server's SMTP address (excluding the port number):" && [ -z "$smtp" ] && echo "Give your email server's SMTP address (excluding the port number):" &&
read -r smtp read -r smtp
[ "$sport" = 465 ] && tlsline="tls_starttls off"
[ "$sport" = 587 ] && tlsline="# tls_starttls"
[ -z "$realname" ] && realname="${fulladdr%%@*}" [ -z "$realname" ] && realname="${fulladdr%%@*}"
hostname="$(echo "$fulladdr" | cut -d @ -f 2)" hostname="$(echo "$fulladdr" | cut -d @ -f 2)"
login="${login:-$fulladdr}" login="${login:-$fulladdr}"


+ 1
- 1
mw.1 View File

@@ -63,7 +63,7 @@ IMAP/POP server port (assumed to be 993 for IMAP and 995 for POP if not specifie
SMTP server address SMTP server address
.TP .TP
.B -S .B -S
SMTP server port (assumed to be 587 if not specified)
SMTP server port (assumed to be 465 if not specified)
.TP .TP
.B -x .B -x
Account password. You will be prompted for the password interactively if this option is not given. Account password. You will be prompted for the password interactively if this option is not given.


+ 1
- 1
share/domains.csv View File

@@ -160,7 +160,7 @@ live.rhul.ac.uk,outlook.office365.com,993,smtp.office365.com,587
logorroici.org,mail.autistici.org,993,smtp.autistici.org,465 logorroici.org,mail.autistici.org,993,smtp.autistici.org,465
loves.dicksinhisan.us,mail.cock.li,993,mail.cock.li,587 loves.dicksinhisan.us,mail.cock.li,993,mail.cock.li,587
loves.dicksinmyan.us,mail.cock.li,993,mail.cock.li,587 loves.dicksinmyan.us,mail.cock.li,993,mail.cock.li,587
lukesmith.xyz,mail.lukesmith.xyz,993,mail.lukesmith.xyz,587
lukesmith.xyz,mail.lukesmith.xyz,993,mail.lukesmith.xyz,465
luther.edu,imap.gmail.com,993,smtp.gmail.com,587 luther.edu,imap.gmail.com,993,smtp.gmail.com,587
mac.com,imap.mail.me.com,993,smtp.mail.me.com,587 mac.com,imap.mail.me.com,993,smtp.mail.me.com,587
mace.ac.in,imap.gmail.com,993,smtp.gmail.com,587 mace.ac.in,imap.gmail.com,993,smtp.gmail.com,587


Loading…
Cancel
Save