diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-02-18 11:01:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-18 11:01:31 -0500 |
commit | 0b999a2a3cada21ce5e563660fae24c945f54e36 (patch) | |
tree | 9e1f7b5cbfb71c9dfe3ad2fc216c48bc4f611cec /autoconf | |
parent | a4495298dcfe39e69a15843275aed161daed1aba (diff) | |
parent | 90fe2383c0b25d6011405e2863526fcc539998b5 (diff) |
Merge pull request #11 from scattenlaeufer/login_name
Ask for a login name during account creation
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/mutt_profile | 2 | ||||
-rw-r--r-- | autoconf/offlineimap_profile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/mutt_profile b/autoconf/mutt_profile index ac8dc90..6983f5b 100644 --- a/autoconf/mutt_profile +++ b/autoconf/mutt_profile @@ -2,7 +2,7 @@ # muttrc file for account $title set realname = "$realname" set from = "$fulladdr" -set smtp_url = "smtp://$fulladdr@$smtp:$sport/" +set smtp_url = "smtp://$login@$smtp:$sport/" set sendmail = "/usr/bin/msmtp -a $title" set folder = "~/.mail/$title" set header_cache = ~/.config/mutt/accounts/$title/cache/headers diff --git a/autoconf/offlineimap_profile b/autoconf/offlineimap_profile index 8311e1c..01b572c 100644 --- a/autoconf/offlineimap_profile +++ b/autoconf/offlineimap_profile @@ -5,7 +5,7 @@ remoterepository = $title-remote [Repository $title-remote] type = $type -remoteuser = $fulladdr +remoteuser = $login sslcacerfile = /etc/ssl/cets/ca-certificates.crt remotepasseval = mailpasswd("$title") remotehost = $imap |