Table of Contents

Configuration examples for paclink-unix email clients

Mozilla Thunderbird

Unix movemail config Steps

  1. Edit > Account settings…
  2. Select 'Movemail' option in account wizard, hit Next.
  3. Set up user information - Your Name 'Jon Doe' ←- displayed name on emails.
  4. Set email address to 'your_user_name_here at localhost' ←- no .com / .net / .org suffix.
  5. Set 'Outgoing Server' to 'localhost'
  6. Account name - I just set this to 'my_user_name at localhost'.
    • You can set it to 'local mail' or 'mail from my machine', etc.
  7. Now you will get a summary page that asks you to confirm the following information:
Account Name: my_account_name at localhost
Email Address: my_account_name at localhost
Incoming Server Type: MOVEMAIL
Outgoing User Name: my_user_name
Outgoing Server Name (SMTP): localhost

mutt and mail

Install mutt or mail

apt-get install mutt
apt-get install mailutils

Configure mutt

mkdir -p ~/Maildir/{,cur,tmp,new}
mkdir -p ~/Maildir/inbox/{,cur,tmp,new}
mkdir -p ~/Maildir/sent/{,cur,tmp,new}
mkdir -p ~/Maildir/drafts/{,cur,tmp,new}
mkdir -p ~/Maildir/trash/{,cur,tmp,new}
mkdir -p ~/Maildir/attachments/{,cur,tmp,new}

Running mutt in a script or command line

# send content of a file in body of e-mail
mutt -s "put subject line here" you@youremailid.com someoneelse@whatever.com < file_name_of_content
mutt -s "//WL2K R/ Test msg" callsign>@winlink.org < mail_message_file_name
mutt -s "//WL2K R/ Test msg" -a /tmp/file.tar.gz you@cyberciti.biz < /tmp/mailmessage.txt
mutt -s//WL2K R/ Test msg” -a attach1 -a attach2 -a attach3 vivek@nixcraft.co.in < /tmp/mailmessage.txt
mutt -s//WL2K R/” kg6geu@winlink.org, ke7kro@winlink.org  < /tmp/mailmessage.txt

Running mail in a script or command line

# send content of a file in body of e-mail
mail -s "//WL2K your subject line here" -a "From: yourcallsign@winlink.org" -a "Reply-To: yourcallsign@winlink.org" someonescallsign@winlink.org someregularemailaddress < file_name_of_content
# from command line or script
echo “This will go into the body of the mail” | mail -s '//WL2K cmd line test' -a "From: yourcallsign@winlink.org" -a "Reply-To: yourcallsign@winlink.org" some_regular_email_address

WEB Based Email Clients