Set pine/alpine to use IMAP
Set IMAP as mailbox source
These instructions assume you have already been using pine/alpine and have a .pinerc file.
- In your editor of choice, open your .pinerc file.
- There are two places you will need to change to point to IMAP. Replace
__USERNAME__
with your userename. - Find the line inbox-path= and change it to:
inbox-path={imap.cs.umd.edu/user=__USERNAME__/ssl/NoRsh/IMAP}inbox
- Find the line folder-collections= and change it to:
folder-collections=IMAP {imap.cs.umd.edu/user=__USERNAME__/ssl/NoRsh}[]
Set pine not to require a password
You can set pine to remeber your IMAP password. The easiest way to do this is to add an alias in your .bashrc and/or other startup files.
- Create the password file and do NOT write your password in the file:
touch ~/.pine.pwd
- Change the permissions so that only you will have access:
chmod go-rw ~/.pine.pwd
- Set the alias:
alias pine='alpine -passfile ~/.pine.pwd'