userdoc:ece_email:mutt_with_imap
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| userdoc:ece_email:mutt_with_imap [2014/02/06 16:43] – peterp | userdoc:ece_email:mutt_with_imap [2014/02/06 16:46] (current) – peterp | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | |||
| + | " | ||
| + | |||
| + | | ||
| + | |||
| + | | ||
| + | |||
| + | Some versions of the " | ||
| + | IMAP is required for reading email from the new ECE mail server. | ||
| + | The " | ||
| + | able to use IMAP and SMTP. | ||
| + | |||
| + | The following template should be added to your " | ||
| + | read email from the ECE mail server with " | ||
| + | |||
| + | < | ||
| + | # " | ||
| + | # | ||
| + | # Replace " | ||
| + | # Replace ' | ||
| + | # | ||
| + | |||
| + | # Set newest message at top | ||
| + | # set sort_aux=reverse-last-date-received | ||
| + | |||
| + | # Automatically log in to this mailbox at startup | ||
| + | |||
| + | #ECE department secure IMAP server | ||
| + | set spoolfile=" | ||
| + | |||
| + | # SMTP server should not have to be set on local Tier 1 computers. | ||
| + | # Mutt will use " | ||
| + | #set smtp_url=" | ||
| + | |||
| + | # User info | ||
| + | set my_user=LOGINNAME | ||
| + | set realname = ' | ||
| + | set from = " | ||
| + | set use_from = yes | ||
| + | |||
| + | # Define the = shortcut, and the entry point for the folder browser (c?) | ||
| + | set folder=" | ||
| + | set record=" | ||
| + | set postponed=" | ||
| + | set trash=" | ||
| + | |||
| + | # activate TLS if available on the server | ||
| + | set ssl_starttls=yes | ||
| + | |||
| + | # always use SSL when connecting to a server | ||
| + | set ssl_force_tls=yes | ||
| + | |||
| + | # Don't wait to enter mailbox manually | ||
| + | unset imap_passive | ||
| + | |||
| + | # Automatically poll subscribed mailboxes for new mail (new in 1.5.11) | ||
| + | set imap_check_subscribed | ||
| + | |||
| + | # Reduce polling frequency to a sane level | ||
| + | set mail_check=60 | ||
| + | |||
| + | # And poll the current mailbox more often (not needed with IDLE in post 1.5.11) | ||
| + | set timeout=10 | ||
| + | |||
| + | # keep a cache of headers for faster loading (1.5.9+?) | ||
| + | #set header_cache=~/ | ||
| + | |||
| + | # Display download progress every 5K | ||
| + | set net_inc=5 | ||
| + | </ | ||