summaryrefslogtreecommitdiff
path: root/.config/neomutt/suse_de
blob: 662d0ba532f4d5d7c81c4458cf91b6d5527b9c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
unmailboxes *

# Unset to properly repopulate the variables
unset smtp_pass
unset smtp_url
unset smtp_user
unset from
unset hostname

# Receive options
set imap_pass="`pass show suse/imap_password`"
set imap_user=bdas@mutt
set folder=imaps://`pass show suse/imap_username`@`pass show suse/imap_address`:993
set spoolfile=+INBOX
set record=+INBOX/Sent
set postponed=+INBOX/Drafts
mailboxes =INBOX
set imap_check_subscribed

set edit_headers=yes
set ssl_force_tls=yes
set ssl_starttls

set header_cache = "$XDG_CACHE_HOME/neomutt/headers/"
set message_cachedir = "$XDG_CACHE_HOME/neomutt/bodies/"
set certificate_file = "$XDG_CACHE_HOME/neomutt/certificates/"

# allow mutt to open a new IMAP connection autmatically
unset imap_passive

# keep imap connection alive by polling intermittently
set imap_keep_alive=300

# how often to check check for new email
set mail_check=2

## Send options
set smtp_url="smtp://`pass show suse/imap_username`@`pass show suse/imap_address`:587/"
set smtp_pass="`pass show suse/imap_password`"
set from="bdas"
set hostname="suse.de"
set realname='Brahmajit'
set use_from=yes

set signature="$HOME/.config/neomutt/signature_suse"

## Hook
account-hook $folder "set imap_user=`pass show suse/imap_username` imap_pass=`pass show suse/imap_password`"

# vim: set ft=muttrc: