Configuration examples for paclink-unix email clients
Mozilla Thunderbird
Unix movemail config Steps
Edit > Account settings…
Select 'Movemail' option in account wizard, hit Next.
Set up user information - Your Name 'Jon Doe' ←- displayed name on emails.
Set email address to 'your_user_name_here at localhost' ←- no .com / .net / .org suffix.
Set 'Outgoing Server' to 'localhost'
Account name - I just set this to 'my_user_name at localhost'.
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
-
The latest version of mutt is
NeoMutt
-
Install mutt or mail
apt-get install mutt
apt-get install mailutils
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
Create a mail message in a text file
Subject follows -s in quotes
mutt -c allows specifying Carbon Copy addresses
Blind Copy (Bcc:) does not work in winlink e-mail
# 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