Configuring and Using Mutt

Total Page:16

File Type:pdf, Size:1020Kb

Configuring and Using Mutt Configuring and Using Mutt Ryan Curtin LUG@GT Ryan Curtin Configuring and Using Mutt - p. 1/21 Goals » Goals By the end of this presentation, hopefully, you should be able Introduction to: Basic Usage Know the differences between Mutt, Pine, and other CLI Making a muttrc mailreaders Questions and Comments? Know the capabilities of Mutt Configure Mutt to connect to GT PRISM accounts (IMAP) Configure Mutt to make parsing through mail easy Know basic Mutt commands Write a basic, working .muttrc Know where to find further reference on Mutt Ryan Curtin Configuring and Using Mutt - p. 2/21 What is Mutt? » Goals Mutt is a “small, but very powerful text-based mail client for Introduction Unix operating systems” » What is Mutt? » Why should I use mutt? » Comparison with Pine Based largely on the elm mail client » What else is out there? Highly customizable; keybindings, macros Basic Usage Features to support mailing-lists (list-reply) Making a muttrc Questions and Comments? IMAP, POP3 support MIME, DSN, PGP support Ryan Curtin Configuring and Using Mutt - p. 3/21 Why should I use mutt? » Goals Lightweight, fast, and simple Introduction » What is Mutt? » Why should I use mutt? Can run inside a screen session » Comparison with Pine » What else is out there? No need for an annoying mouse Basic Usage Making a muttrc It looks cool Questions and Comments? Ryan Curtin Configuring and Using Mutt - p. 4/21 Comparison with Pine » Goals Mutt is lighter (and presumably faster) Introduction » What is Mutt? » Why should I use mutt? Mutt supports more authentication methods » Comparison with Pine » What else is out there? Mutt has better encryption (PGP/MIME/OpenPGP) Basic Usage Making a muttrc Mutt is still in active development (Pine stopped at 4.64; Questions and Comments? development moved to Alpine) Ryan Curtin Configuring and Using Mutt - p. 5/21 What else is out there? » Goals pine / alpine Introduction » What is Mutt? » Why should I use mutt? gnus (runs in emacs) » Comparison with Pine » What else is out there? nmh Basic Usage Making a muttrc slrn - a newsreader Questions and Comments? mutt-ng - fork of mutt, supports NNTP Ryan Curtin Configuring and Using Mutt - p. 6/21 Reading Mail » Goals The important commands: Introduction Basic Usage » Reading Mail (up/down arrows) select message » Reading a message » Searching mail PgUp / PgDn page up / down Making a muttrc Enter select message Questions and Comments? r reply to selected message g group reply m begin composing mail q quit / return to message listing d delete message u undelete message F flag message $ commit changes (if IMAP) ? help Ryan Curtin Configuring and Using Mutt - p. 7/21 Reading a message » Goals Useful commands when you are looking at a message: Introduction Basic Usage » Reading Mail Enter scroll down a line » Reading a message » Searching mail Backspace scroll up one line Making a muttrc PgUp / PgDn scroll up/down a page Questions and Comments? Space next message h view full headers a create alias from a sender / search within message ˆ jump to top of message v show attachments Ryan Curtin Configuring and Using Mutt - p. 8/21 Searching mail » Goals Mutt supports regular expressions in its searches. To search Introduction through messages use / or use l to limit messages. More Basic Usage complicated queries: ˜f [email protected] matches all » Reading Mail » Reading a message » Searching mail messages from [email protected] Making a muttrc ˜A all messages Questions and Comments? ˜b in message body (careful!) ˜f from ˜t to ˜l mailing list ˜F flagged messages ˜N new messages ˜d date (accepts a range) ˜Q replied-to messages ˜s in subject line Ryan Curtin Configuring and Using Mutt - p. 9/21 Basic configuration » Goals Basic Mutt setup: Introduction Basic Usage set from=’[email protected]’ Making a muttrc set realname="Ryan Curtin" » Basic configuration » Configuring mutt for IMAP set use_form=yes » Configuring mutt for POP3 » Configuring mutt for local mail set sort=threads » Setting up header caching » Setting up outgoing mail set sort_aux=last-date-received » Colors! » Setting up hooks set visual="vim" » Dealing with attachments set editor="vim" » Other things you can configure » Links set signature=/usr/bin/fortune| Questions and Comments? Ryan Curtin Configuring and Using Mutt - p. 10/21 Configuring mutt for IMAP » Goals Here is an example of how Mutt can be configured to connect Introduction to GT PRISM IMAP accounts. Setup for other IMAP servers Basic Usage will be very similar. Making a muttrc » Basic configuration » Configuring mutt for IMAP set spoolfile=imaps://imap.mail.gatech.edu/INBOX » Configuring mutt for POP3 » Configuring mutt for local mail set folder=imaps://imap.mail.gatech.edu/INBOX » Setting up header caching » Setting up outgoing mail set imap_user=gth671b » Colors! » Setting up hooks set imap_keepalive=40 » Dealing with attachments » Other things you can configure set imap_servernoise=yes » Links Questions and Comments? Also useful is imap_authenticators if you want to specify the methods of authentication mutt will try. Ryan Curtin Configuring and Using Mutt - p. 11/21 Configuring mutt for POP3 » Goals Simple configuration to connect to a POP3 mailserver: Introduction Basic Usage set pop_host=pops://pops.server.com/ Making a muttrc set pop_user=username » Basic configuration » Configuring mutt for IMAP set pop_reconnect=yes » Configuring mutt for POP3 » Configuring mutt for local mail set pop_checkinterval=1 » Setting up header caching » Setting up outgoing mail set pop_delete=yes » Colors! » Setting up hooks » Dealing with attachments » Other things you can configure Similar to IMAP, a pop_authenticators option also exists. » Links Questions and Comments? Ryan Curtin Configuring and Using Mutt - p. 12/21 Configuring mutt for local mail » Goals For local mail (some of these options may be unnecessary): Introduction Basic Usage set mbox_type=(mbox | Maildir | MH | MMDF) Making a muttrc » Basic configuration set spoolfile=/path/to/spool/ » Configuring mutt for IMAP » Configuring mutt for POP3 - spoolfile is only necessary if $MAIL is not correct » Configuring mutt for local mail » Setting up header caching » Setting up outgoing mail set mbox=/saved/mail/dir/ » Colors! » Setting up hooks » Dealing with attachments » Other things you can configure » Links Questions and Comments? Ryan Curtin Configuring and Using Mutt - p. 13/21 Setting up header caching » Goals Mutt (since 1.5.7) supports header caching by default. Introduction Basic Usage set header_cache=/location/of/header/cache/ Making a muttrc » Basic configuration » Configuring mutt for IMAP Mutt must be compiled with the --enable-hcache option » Configuring mutt for POP3 » Configuring mutt for local mail passed to the configure script. » Setting up header caching » Setting up outgoing mail » Colors! » Setting up hooks » Dealing with attachments » Other things you can configure » Links Questions and Comments? Ryan Curtin Configuring and Using Mutt - p. 14/21 Setting up outgoing mail » Goals Mutt is not an MTA; you must configure your own for Mutt to Introduction use Basic Usage Making a muttrc set sendmail=/location/of/mta » Basic configuration » Configuring mutt for IMAP » Configuring mutt for POP3 » Configuring mutt for local mail An example with nbsmtp: » Setting up header caching » Setting up outgoing mail » Colors! set sendmail="/usr/bin/nbsmtp -d gmail.com -h » Setting up hooks » Dealing with attachments smtp.gmail.com -f [email protected]" » Other things you can configure » Links sendmail /usr/bin/sendmail Questions and Comments? defaults to Ryan Curtin Configuring and Using Mutt - p. 15/21 Colors! » Goals Formatting: Introduction color object foreground background [ regexp ] Basic Usage Making a muttrc Some examples: » Basic configuration » Configuring mutt for IMAP » Configuring mutt for POP3 color index brightyellow default "˜s Package Receipt » Configuring mutt for local mail » Setting up header caching Notification" » Setting up outgoing mail » Colors! color index green default "˜t » Setting up hooks » Dealing with attachments lug-(announce|chat)@lists.lugatgt.org" » Other things you can configure » Links color body green default "(ftp|http)://[ˆ ]+" Questions and Comments? color quoted red default color signature cyan default Ryan Curtin Configuring and Using Mutt - p. 16/21 Setting up hooks » Goals [X]-hook: Execute an action when doing [X] Introduction [X]-hook regexp command Basic Usage Types of hooks: send-hook, charset-hook, fcc-hook, Making a muttrc » Basic configuration fcc-save-hook, folder-hook, mbox-hook, iconv-hook, » Configuring mutt for IMAP » Configuring mutt for POP3 message-hook, pgp-hook, save-hook, send-hook » Configuring mutt for local mail » Setting up header caching » Setting up outgoing mail » Colors! Some examples: » Setting up hooks » Dealing with attachments » Other things you can configure folder-hook junk set sort=threads » Links Questions and Comments? send-hook ’˜t gatech.edu’ ’set realname="George P. Burdell"’ message-hook ’˜f [email protected]’ ’color body brightyellow default’ Ryan Curtin Configuring and Using Mutt - p. 17/21 Dealing with attachments » Goals v - view attachments Introduction The .mailcap file specifies external commands mutt will use Basic Usage to view attachments. Making a muttrc » Basic configuration To set up mutt for HTML mail: » Configuring mutt for IMAP » Configuring mutt for POP3 » Configuring mutt for local mail » Setting up header caching In .mailcap: » Setting up outgoing mail » Colors! text/html; links %s; nameplate=%s.html » Setting up hooks » Dealing with attachments »
Recommended publications
  • Oldschool E-Mail Setup Eine Freakshow
    Oldschool E-mail Setup Eine Freakshow [email protected] Chemnitzer Linuxtage, 2016 (Screenshot GMX vor >15 Jahren: Waybackmachine zu www.gmx.net) (Screenshot GMX heute) (Screenshot Gmail heute) Lösungen? ● Claws ● Mutt ● Eudora ● Netscape Navigator ● Evolution ● Opera M2 ● GMX ● Outlook ● Gnus ● SquirrelMail ● Hotmail ● The Bat! ● Hushmail ● Thunderbird ● KMail ● … Flußgrafik Email Netz MTA MRA MDA MUA MSA MTA Netz Hipster! ● KISS ● YAGNI ● DRY ● NIH ● Divide And Conquer ● Everything is a file ● No vendor lock-in ● Mißtraue Autoritäten – fördere Dezentralisierung Netz Netz Emails Client, den ich Remote verwenden kann Leicht erweiterbar Emails lokal Filter Offenes Format Adressen Netz Netz Abholen Transportformat? Pull Subject 1 Email = 1 File Keine Spuren X-List-ID Mit Hierarchien am Server Beliebige Einfaches Suchen Header Verlässliches Suchen Verarbeitung mit Unix Tools Client, den ich Remote verwenden kann Leicht erweiterbar Emails lokal Filter Offenes Format Adressen Netz Netz Abholen Transportformat? Pull Subject 1 Email = 1 File Keine Spuren X-List-ID Mit Hierarchien am Server Beliebige Einfaches Suchen Header Verlässliches Suchen Verarbeitung mit Unix Tools mbox Maildir mh Client, den ich Remote verwenden kann Leicht erweiterbar Emails lokal Filter Offenes Format Adressen Netz Netz Abholen Transportformat? Pull Subject 1 Email = 1 File Keine Spuren X-List-ID Mit Hierarchien am Server Beliebige Einfaches Suchen Header Verlässliches Suchen Verarbeitung mit Unix Tools mbox Maildir mh tmp 1439306571.1269_0.elvis ~/Post/Technik/Wikitech new 1448267819.5940_0.spencer ... 1457079728.2000_0.spencer:2, cur 1456839383.9873_0.nepomuk:2,SR 1457166567.23654_0.spencer:2,S ... Client, den ich Remote verwenden kann Leicht erweiterbar Filter Adressen Netz Netz Abholen Pull Subject Maildir Keine Spuren X-List-ID am Server Beliebige Header Client, den ich Remote verwenden kann Leicht erweiterbar Filter Adressen Netz Netz Abholen Pull Subject Maildir Keine Spuren X-List-ID am Server Beliebige Header fetchmail getmail mpop ..
    [Show full text]
  • Designing a User Interface for the Innovative E-Mail Client Semester Thesis
    Designing a User Interface for the Innovative E-mail Client Semester Thesis Student: Alexandra Burns Supervising Professor: Prof. Bertrand Meyer Supervising Assistants: Stephanie Balzer, Joseph N. Ruskiewicz December 2005 - April 2006 1 Abstract Email Clients have become a crucial application, both in business and for per- sonal use. The term information overload refers to the time consuming issue of keeping up with large amounts of incoming and stored email. Users face this problem on a daily basis and therefore benefit from an email client that allows them to efficiently search, display and store their email. The goal of this thesis is to build a graphical user interface for the innovative email client developed in a previous master thesis. It also explores the possibilities of designing a user interface outside of the business rules that apply for commercial solutions. 1 Contents 1 Introduction 4 2 Existing Work 6 2.1 ReMail ................................. 6 2.1.1 Methods ............................ 6 2.1.2 Problems Identified ...................... 7 2.1.3 Proposed Solutions ...................... 7 2.1.4 Assessment .......................... 8 2.2 Inner Circle .............................. 8 2.2.1 Methods ............................ 8 2.2.2 Problems Identified ...................... 9 2.2.3 Proposed Solutions ...................... 9 2.2.4 Assessment .......................... 10 2.3 TaskMaster .............................. 10 2.3.1 Methods ............................ 10 2.3.2 Problems Identified ...................... 11 2.3.3 Proposed Solution ...................... 11 2.3.4 Assessment .......................... 12 2.4 Email Overload ............................ 12 2.4.1 Methods ............................ 12 2.4.2 Problems Identified ...................... 13 2.4.3 Proposed Solutions ...................... 13 2.4.4 Assessment .......................... 14 3 Existing Solutions 16 3.1 Existing Email Clients .......................
    [Show full text]
  • Mathematics Department's New Email Service
    Mathematics Department’s New Email Service The department’s new email service employs the widely-used IMAP email protocol to allow you to read and organize your email. You may use the Math web-based email service, http://webmail.math.vt.edu, and/or email software on Unix systems, such as elm, mutt or pine. The IMAP protocol stores your email on a department server computer that daily saves your email and files to backup tapes. The server does not have an infinite supply of disk storage, so you will need to periodically delete email you no longer need or transfer it to your PC or Mac for archival.1 You may use the webmail service in conjunction with other email applications. Elm Elm is no longer supported. You may use mutt which is very similar. Pine Before running pine, you must update your existing pine settings with this command, /local/calvin/bin/updatepinerc PID where PID is your Virginia Tech PID. This will create a new .pinerc file in your home directory containing settings for using the new Math Email system. A copy of your original .pinerc file is named .pinerc-pre4.64 in your home directory. If you have previously used an older version of pine, any of your old settings that were not migrated to the new .pinerc will be listed. These are saved in a file named pinerc- settings. If you want to continue using any old settings, you must edit .pinerc to include them. Pine groups mailboxes into collections. One collection will be any mailboxes on the mail server.
    [Show full text]
  • Postfix Catch All and Mutt
    Postfix Catch All and Mutt End goal: having postfix saving all of the emails for a domain to a single “mailbox” in maildir format, and being able to send email using mutt (or similar). Specifics to my setup I'm not going to open port 25 on my server, I'm going through Net7's spam filter, which will then forward to my server on port 8025. So I need to open port 8025. The rule was already there for port 25, I just need to edit the thing. Make Postfix listen to another port There is always the plan of using iptables to redirect the traffic. You can do it in Postfix as well. Open master.cf and find this line: smtp inet n - - - - smtpd The smtp word up front is actually a port. You can replace it with this line: 8025 inet n - - - - smtpd If you restart Postfix and check with netstat it should be listening to another port. Setting up Maildir delivery By default Postfix will output emails to a single file in /var/mail/. I'd rather have the Maildir format which separates emails into different files that I can individually move and/or delete. I'm going off the rails here trying out things. Looks like we're going to need these configuration options in main.cf: home_mailbox = Maildir/ mailbox_command = Make sure mailbox_command isn't set somewhere else in the file. Reload Postfix. We should be able to test that this is working using a known user on the system. You can telnet-test like so: EHLO test MAIL FROM:<[email protected]> RCPT TO:<william> DATA Test.
    [Show full text]
  • Webfaction User Guide
    WebFaction User Guide WebFaction is a service of Paragon Internet Group Limited CONTENTS 1 Introduction 3 1.1 Services..................................................3 1.2 The Complete System..........................................4 2 The Control Panel 5 2.1 Log in to the Control Panel.......................................5 2.2 Change Your Control Panel Password..................................5 2.3 What to Do About a Lost Password...................................6 2.4 Two-Step Login.............................................6 3 Finding Details About Your Server9 3.1 Finding Your Server’s Name.......................................9 3.2 Finding Your Server’s Operating System................................9 3.3 Finding Your Server’s IP Address.................................... 10 4 Accessing Your Data 11 4.1 Connecting with SSH.......................................... 11 4.2 Connecting with FTP........................................... 14 4.3 Changing Your FTP or SSH Password.................................. 14 4.4 Additional Users............................................. 15 4.5 Backups................................................. 16 5 Accounts 17 5.1 Plans and Services............................................ 17 5.2 Communicating with WebFaction.................................... 18 5.3 Payments................................................. 19 5.4 Affiliate Program............................................. 23 5.5 Canceling Your Account......................................... 24 6 Domains 25 6.1 Getting
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Sebenarnya Apa Sih Yang Dimaksud Dengan Perangkat Lunak Email Client
    Aplikasi email client Sebenarnya apa sih yang dimaksud dengan Perangkat Lunak Email Client ? Jika kita telaah asal kata dari kalimat tersebut, bahwa email (Electronic Mail) merupakan suatu proses dan cara pengiriman pesan atau gambar melalui internet ke 1 org atau lebih. Pada dasarnya email sama dengan surat biasa (snail mail) yang harus melewati beberapa kantor pos sebelum sampai ke tujuannya, begitu dikirimkan oleh seseorang melalui komputer yang tersambung ke internet sebuah email masuk ke beberapa komputer lain di sepanjang jaringan internet yang disebut dengan mail server. Ketika email tersebut sampai ke server yang menjadi tujuan (seperti yang ditunjuk pada alamat email – kepada siapa kita menulis email), maka email tersebut disimpan pada sebuah emailbox. Si pemilik alamat email baru bisa mendapatkan email itu kalau yang bersangkutan mengecek emailbox-nya. Nah untuk mengakses emailbox, kita perlu melakukan login melalui interface atau tampilan berbasis web yang disediakan oleh Pemilik Mail Server kita. Untuk melakukan login tentu saja dibutuhkan koneksi internet yang lumayan kencang dan tidak putus-putus alias RTO (Request Time Out). Untuk Mempermudah kita membaca email serta pengiriman email tanpa harus login melalui tampilan web, kita membutuhkan aplikasi yang yang biasa disebut Email Client. Aplikasi apa saja yang termasuk Email Client ? Beberapa aplikasi yang termasuk jenis ini diantaranya adalah : (Tabel Comparison) User Client Creator Cost Software license Interface Alpine University of Washington Free Apache License CLI Balsa gnome.org Free GNU GPL GUI Becky! Internet Rimarts US$40 proprietary software GUI Mail BlitzMail Dartmouth College Free BSD GUI Citadel citadel.org Free GNU GPL Web Claws Mail the Claws Mail team Free GNU GPL GUI Courier Mail Server Cone Free GNU GPL CLI developers Correo Nick Kreeger Free GNU GPL GUI Courier Micro Computer Free (as of version (formerly Systems, Inc., continued proprietary software GUI 3.5) Calypso) by Rose City Software Dave D.
    [Show full text]
  • Email on Mobile Devices Configuring Intune and FMOL Email
    Email on Mobile Devices Configuring Intune and FMOL Email Intune Company Portal is used to access the FMOL network through a mobile device, including email. Intune provides two options for accessing email, but please note that the Intune app must be installed to access either. Here’s what to do: 1. Uninstall AirWatch or Previous Mobile Device Management Do not uninstall InTune if it is already installed. 1. Install Intune Company Portal 2. Choose one the two following channels to access email: Native Email Client Email may be access through the native mail app installed on phones. Outlook Email Client The Microsoft Outlook app may be installed to access email. Uninstall AirWatch or Previous Mobile Device Management AirWatch or other Mobile Device Management (MDM) applications must be removed before installing InTune and configuring FMOL email. Apple iOS Android 1. Open “Settings” and the select “General” 1. Open “Settings” and select “Apps” 2. Scroll to the bottom and select “Device 2. Select “Agent” and select “Deactivate and Management” Uninstall” 3. Select “Device Manager” 3. On Samsung devices only, select the “AirWatch Samsung ELM Service” and select “Deactivate 4. At the bottom, select “Remove and Uninstall” Management” Email on Mobile Devices Install Intune Company Portal 1. Install Intune Company Portal from the 4. Enter FMOL network password and approve Apple App Store or Google Play Store. MFA authentication request. 2. Open Intune and click “Sign In” 5. Click “Continue and Next” through the next several screens for setup of Encryption, Pin Lock Screen, and other security functions. 6. Upon completion, click “Done” to complete 3.
    [Show full text]
  • The Qmail Handbook by Dave Sill ISBN:1893115402 Apress 2002 (492 Pages)
    < Free Open Study > The qmail Handbook by Dave Sill ISBN:1893115402 Apress 2002 (492 pages) This guide begins with a discussion of qmail s history, architecture and features, and then goes into a thorough investigation of the installation and configuration process. Table of Contents The qmail Handbook Introduction Ch apt - Introducing qmail er 1 Ch apt - Installing qmail er 2 Ch apt - Configuring qmail: The Basics er 3 Ch apt - Using qmail er 4 Ch apt - Managing qmail er 5 Ch apt - Troubleshooting qmail er 6 Ch apt - Configuring qmail: Advanced Options er 7 Ch apt - Controlling Junk Mail er 8 Ch apt - Managing Mailing Lists er 9 Ch apt - Serving Mailboxes er 10 Ch apt - Hosting Virtual Domain and Users er 11 Ch apt - Understanding Advanced Topics er 12 Ap pe ndi - How qmail Works x A Ap pe ndi - Related Packages x B Ap pe ndi - How Internet Mail Works x C Ap pe ndi - qmail Features x D Ap pe - Error Messages ndi x E Ap pe - Gotchas ndi x F Index List of Figures List of Tables List of Listings < Free Open Study > < Free Open Study > Back Cover • Provides thorough instruction for installing, configuring, and optimizing qmail • Includes coverage of secure networking, troubleshooting issues, and mailing list administration • Covers what system administrators want to know by concentrating on qmail issues relevant to daily operation • Includes instructions on how to filter spam before it reaches the client The qmail Handbook will guide system and mail administrators of all skill levels through installing, configuring, and maintaining the qmail server.
    [Show full text]
  • Vdirsyncer Documentation Release 0.18.1.Dev82+Gdb6da70
    vdirsyncer Documentation Release 0.18.1.dev82+gdb6da70 Markus Unterwaditzer Sep 22, 2021 Users 1 When do I need Vdirsyncer?3 2 Installation 5 3 Tutorial 9 4 SSL and certificate validation 15 5 Storing passwords 17 6 Syncing with read-only storages 19 7 Full configuration manual 21 8 Other tutorials 31 9 Known Problems 39 10 Contributing to this project 41 11 The Vdir Storage Format 45 12 Packaging guidelines 47 13 Support and Contact 49 14 Changelog 51 15 Credits and License 65 16 Donations 67 Bibliography 69 Index 71 i ii vdirsyncer Documentation, Release 0.18.1.dev82+gdb6da70 • Documentation • Source code Vdirsyncer is a command-line tool for synchronizing calendars and addressbooks between a variety of servers and the local filesystem. The most popular usecase is to synchronize a server with a local folder and use a set of other programs to change the local events and contacts. Vdirsyncer can then synchronize those changes back to the server. However, vdirsyncer is not limited to synchronizing between clients and servers. It can also be used to synchronize calendars and/or addressbooks between two servers directly. It aims to be for calendars and contacts what OfflineIMAP is for emails. Users 1 vdirsyncer Documentation, Release 0.18.1.dev82+gdb6da70 2 Users CHAPTER 1 When do I need Vdirsyncer? 1.1 Why not Dropbox + todo.txt? Projects like todo.txt criticize the complexity of modern productivity apps, and that rightfully. So they set out to create a new, super-simple, human-readable format, such that vim suffices for viewing the raw data.
    [Show full text]
  • The Claws Mail User Manual the Claws Mail Team1
    The Claws Mail User Manual The Claws Mail Team1 Copyright © 2006-2016 The Claws Mail Team. Table of Contents Introduction....................................................................................................................3 Getting started with Claws Mail................................................................................4 Basic mail handling.......................................................................................................5 Account customisation..................................................................................................8 Address book................................................................................................................10 Advanced features.......................................................................................................11 Extending Claws Mail.................................................................................................20 A. The Claws Mail FAQ..............................................................................................24 B. Default keyboard shortcuts...................................................................................25 C. Acknowledgements................................................................................................27 D. Glossary....................................................................................................................28 E. Gnu General Public License.................................................................................34
    [Show full text]
  • Planning for an Open-Source Entrant in the PKI Interoperability Trials
    Planning for an open-source entrant in the PKI interoperability trials Andrew Findlay 9th June 2001 Skills 1st Ltd netproject 2 Cedar Chase 124 Middleton Road Taplow Morden Maidenhead Surrey SL6 0EU SM4 6RW [email protected] [email protected] 01628 782565 020 8715 0072 http://www.skills-1st.co.uk/ http://www.netproject.com/ netproject/pki/docs/planning.aw 1 Planning for an open-source entrant in the PKI interoperability trials Andrew Findlay 9th June 2001 [email protected] 1: Background CESG and the Office of the E-envoy conducted a PKI and secure messaging interoperability demonstration during February 2001. The aim was to demonstrate to Government that PKI products now interoperate well enough for individual departments to procure them on the basis of functionality and value for money without worrying about compatibility issues. A second round of tests and demonstrations is planned for late 2001, with an expanded range of functions to be tested. Netproject proposed the idea of including one or more open-source entrants in the next round of tests, and was awarded a contract to do an initial study on how this might be achieved. Several benefits are expected to flow from the participation of open-source entrants, including the provision of a non-proprietary ‘neutral ground’ where vendors will be able to work directly with the code at both ends of a communication. 2: Requirements The precise definition of the tests to be undertaken has not yet been fixed, but is expected to include basic CA operations (certificate generation, signing, checking, revocation) and S/MIME messaging including both signing and encryption.
    [Show full text]